Skip to content

Commit

Permalink
fix: unuse varible
Browse files Browse the repository at this point in the history
  • Loading branch information
lybenson committed Jun 23, 2024
1 parent 9e2cb27 commit c137f53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { app, shell, BrowserWindow, ipcMain } from 'electron'
import { join } from 'path'
import { electronApp, is } from '@electron-toolkit/utils'
import { execute, initDB, runMigrate } from './sqlite'
import { execute, initDB } from './sqlite'

function createWindow() {
const mainWindow = new BrowserWindow({
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/pages/sentence/sentence-words.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export default function SentenceWords({ words }: { words?: string }) {
return <div></div>
return <div>{words}</div>
}

0 comments on commit c137f53

Please sign in to comment.