Skip to content

Commit

Permalink
chore: format codes
Browse files Browse the repository at this point in the history
  • Loading branch information
moonlitgrace committed Jan 8, 2025
1 parent 83a42a1 commit 3321674
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion frontend/src/lib/stores/recent_quibs.svelte.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ function sync_to_localstorage() {
localStorage.setItem(
'recent_posts_store',
JSON.stringify(
recent_quibs_state.map((q) => ({ ...q, timestamp: q.timestamp.toISOString() }))
recent_quibs_state.map((q) => ({
...q,
timestamp: q.timestamp.toISOString()
}))
)
);
}
Expand Down

0 comments on commit 3321674

Please sign in to comment.