Skip to content

Commit

Permalink
fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
cutls committed Jun 10, 2024
1 parent afb882b commit ae0c13d
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion electron-src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Native
import { join } from 'path'
import { format } from 'url'
import fs from 'fs'

import { execFile } from 'child_process'
import { promisify } from 'util'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"email": "p@cutls.dev",
"url": "https://cutls.dev"
},
"version": "25.0.0",
"version": "25.0.1",
"codename": "Aiko",
"scripts": {
"clean": "rimraf dist main renderer/out renderer/.next",
Expand Down
2 changes: 1 addition & 1 deletion renderer/entities/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export type Server = {
id: number
domain: string
base_url: string
sns: 'mastodon' | 'pleroma' | 'friendica' | 'firefish'
sns: 'mastodon' | 'pleroma' | 'friendica' | 'firefish' | 'misskey'
favicon: string | null
account_id: number | null
}
Expand Down
1 change: 0 additions & 1 deletion renderer/entities/settings.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import type { NoteVisibility } from 'megalodon/lib/src/firefish/entities/note'
import type { localeType } from '../i18n'
type FormBoolean = 'yes' | 'no'
export type Settings = {
Expand Down

0 comments on commit ae0c13d

Please sign in to comment.