Skip to content

Commit

Permalink
temp hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyfallWasTaken committed Sep 3, 2024
1 parent 4a43d3c commit 2bf4c43
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions frontend/src/lib/stores/mailbox.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
import { writable } from '@macfja/svelte-persistent-store';
import { faker } from '@faker-js/faker';
import { browser } from '$app/environment';

export const username = (() => {
if (browser) {
return writable('username', faker.internet.userName().toLocaleLowerCase());
}
})();
export const username = writable('username', faker.internet.userName().toLocaleLowerCase());

0 comments on commit 2bf4c43

Please sign in to comment.