fix: local config, empty accounts page

This commit is contained in:
Max Peintner
2023-05-25 08:40:53 +02:00
parent bb9527d11a
commit e7b997739a
3 changed files with 8 additions and 1 deletions

View File

@@ -100,7 +100,7 @@ export async function getAllSessionIds(): Promise<any> {
const sessions: SessionCookie[] = JSON.parse(stringifiedCookie?.value);
return sessions.map((session) => session.id);
} else {
return Promise.reject();
return [];
}
}