mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-02-20 07:37:26 -05: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();
|
|
}
|