Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kazuhitogo committed Nov 4, 2023
1 parent 4db10f2 commit bcdc393
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/cdk/lambda/startTranscription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const handler = async (
const req: StartTranscriptionRequest = JSON.parse(event.body!);
const userId = event.requestContext.authorizer!.claims.sub;

const { audioUrl, mediaFormat } = req;
const { audioUrl } = req;

const uuid = uuidv4();

Expand Down
2 changes: 1 addition & 1 deletion packages/web/src/hooks/useTranscribe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const useTranscribeState = create<{

// 音声認識
const startTranscripitonRes = await api.startTranscripiton({
audioUrl: audioUrl
audioUrl: audioUrl,
});

set(() => ({
Expand Down

0 comments on commit bcdc393

Please sign in to comment.