Skip to content

Commit

Permalink
fix(editor): Fix linter by removing unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikey Stengel committed Dec 22, 2024
1 parent 150731e commit 00bd411
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 44 deletions.

This file was deleted.

8 changes: 0 additions & 8 deletions packages/editor/src/plugins/audio/audio-recorder.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,6 @@ import { FaIcon } from '../../editor-ui/fa-icon'
import { showToastNotice } from '../../editor-ui/show-toast-notice'
import { FileState } from '../../plugin/upload'

// function getCurrentDateFormatted() {
// const today = new Date()
// const dd = String(today.getDate()).padStart(2, '0')
// const mm = String(today.getMonth() + 1).padStart(2, '0')
// const yyyy = today.getFullYear()
// return `${dd}_${mm}_${yyyy}`
// }

interface AudioRecorderProps {
source: FileState<string>
setSource: (value: FileState<string>) => void
Expand Down

0 comments on commit 00bd411

Please sign in to comment.