From ec921bea9325aebf053c35dc640a614512f00b1d Mon Sep 17 00:00:00 2001
From: AkiraFukushima
Date: Thu, 4 Feb 2021 10:57:53 +0900
Subject: [PATCH] Specify type for Account in AddListMember
---
src/renderer/store/TimelineSpace/Modals/AddListMember.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/renderer/store/TimelineSpace/Modals/AddListMember.ts b/src/renderer/store/TimelineSpace/Modals/AddListMember.ts
index a79134c1..0cbe4ceb 100644
--- a/src/renderer/store/TimelineSpace/Modals/AddListMember.ts
+++ b/src/renderer/store/TimelineSpace/Modals/AddListMember.ts
@@ -47,7 +47,7 @@ const actions: ActionTree = {
commit(MUTATION_TYPES.UPDATE_ACCOUNTS, res.data)
return res.data
},
- add: async ({ state, rootState }, account: Account): Promise<{}> => {
+ add: async ({ state, rootState }, account: Entity.Account): Promise<{}> => {
const client = generator(
rootState.TimelineSpace.sns,
rootState.TimelineSpace.account.baseURL,