Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Danble committed Feb 6, 2025
1 parent 48c5275 commit f077711
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/site/src/routes/[dictionaryId]/history/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
let content_updates: Tables<'content_updates'>[] = []
onMount(() => {
const usnub = entries.loading.subscribe(async (loading) => {
const unsub = entries.loading.subscribe(async (loading) => {
if (!loading) {
content_updates = await get_content_updates()
usnub()
unsub()
}
loading_content_updates = loading
})
Expand Down

0 comments on commit f077711

Please sign in to comment.