Skip to content

Commit

Permalink
style: padding bottom 여유롭게 조정
Browse files Browse the repository at this point in the history
  • Loading branch information
Nangniya committed Oct 9, 2024
1 parent b202be6 commit 1958c26
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/hooks/useRecorder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const useRecorder = (onAudioData: (data: string) => void) => {
}
};

mediaRecorderRef.current.start(3000);
mediaRecorderRef.current.start();
};

const startRecording = async () => {
Expand All @@ -43,7 +43,7 @@ export const useRecorder = (onAudioData: (data: string) => void) => {
mediaRecorderRef.current.stop();
}
initMediaRecorder(stream);
}, 5000);
}, 3000);
} catch (error) {
console.error('Error accessing the microphone', error);
}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Record/Record.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
.captionContainer {
display: flex;
width: 60%;
padding: 50px;
padding: 50px 50px calc(50px + 7%) 50px;
margin-top: 100px;
background-color: white;
border: none;
Expand Down

0 comments on commit 1958c26

Please sign in to comment.