From 5cee481083262d08ddc79eff78c6f23667c48ecc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=8A=E3=81=95=E3=82=80=E3=81=AE=E3=81=B2=E3=81=A8?= <46447427+samunohito@users.noreply.github.com> Date: Thu, 14 Dec 2023 12:26:02 +0900 Subject: [PATCH] =?UTF-8?q?refactor(frontend)=20$i=20=E3=81=AE=E5=9E=8B?= =?UTF-8?q?=E6=83=85=E5=A0=B1=E3=81=ABtoken=E3=82=92=E8=BF=BD=E5=8A=A0=20(?= =?UTF-8?q?#12649)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/frontend/src/account.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/account.ts b/packages/frontend/src/account.ts index a6af298024..f23fb804c5 100644 --- a/packages/frontend/src/account.ts +++ b/packages/frontend/src/account.ts @@ -16,7 +16,7 @@ import { unisonReload, reloadChannel } from '@/scripts/unison-reload.js'; // TODO: 他のタブと永続化されたstateを同期 -type Account = Misskey.entities.MeDetailed; +type Account = Misskey.entities.MeDetailed & { token: string }; const accountData = miLocalStorage.getItem('account');