mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-23 14:34:19 +02:00
refactor(frontend): フロントエンドの型エラー解消(途中まで) (#16539)
* fix(frontend): FormLinkをボタンとして使用した際にエラーが出る問題を修正 * refactor(frontend): フロントエンドの型エラー解消 * remove unused ts-expect-error * migrate * remove unrelated changes * fix lint * more type fixes
This commit is contained in:
@@ -381,7 +381,7 @@ export const store = markRaw(new Pizzax('base', {
|
||||
avatar: false,
|
||||
urlPreview: false,
|
||||
code: false,
|
||||
} as Record<string, boolean>,
|
||||
},
|
||||
},
|
||||
enableSeasonalScreenEffect: {
|
||||
where: 'device',
|
||||
@@ -483,7 +483,7 @@ export class ColdDeviceStorage {
|
||||
lightTheme, // TODO: 消す(preferに移行済みのため)
|
||||
darkTheme, // TODO: 消す(preferに移行済みのため)
|
||||
syncDeviceDarkMode: true, // TODO: 消す(preferに移行済みのため)
|
||||
plugins: [] as Plugin[], // TODO: 消す(preferに移行済みのため)
|
||||
plugins: [] as (Omit<Plugin, 'installId'> & { id: string })[], // TODO: 消す(preferに移行済みのため)
|
||||
};
|
||||
|
||||
public static watchers: Watcher[] = [];
|
||||
|
||||
Reference in New Issue
Block a user