chore: format player storage and timeline

This commit is contained in:
2026-05-28 11:28:36 +02:00
committed by Milas Holsting
parent d66eb79295
commit 2172d32dc6
2 changed files with 9 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
export type StorageLike = Pick<Storage, 'getItem' | 'setItem' | 'removeItem'>;
export type StorageLike = Pick<Storage, "getItem" | "setItem" | "removeItem">;
const getLocalStorage = (): StorageLike | null => {
try {