mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-20 14:38:58 -04:00
9 lines
282 B
TypeScript
9 lines
282 B
TypeScript
export function useAccessToken(): string {
|
|
const accessToken: string =
|
|
JSON.parse(window.localStorage.getItem('frontendCookies') ?? '[]')
|
|
.find((cookie: string) => cookie.startsWith('st-access-token'))
|
|
?.split('=')[1]
|
|
.split(';')[0] || '';
|
|
return accessToken.trim();
|
|
}
|