diff options
| author | Fuwn <[email protected]> | 2024-01-06 06:05:28 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-06 06:05:28 -0800 |
| commit | 9dfde0448a1da2597f8709e9d1455e4cdf98c0d1 (patch) | |
| tree | a8a79329afce98526741c913900a3131e1cec45d /src/lib/Tools/RandomFollower.svelte | |
| parent | refactor(tools): input template (diff) | |
| download | due.moe-9dfde0448a1da2597f8709e9d1455e4cdf98c0d1.tar.xz due.moe-9dfde0448a1da2597f8709e9d1455e4cdf98c0d1.zip | |
feat(tools): dump profile tool
Diffstat (limited to 'src/lib/Tools/RandomFollower.svelte')
| -rw-r--r-- | src/lib/Tools/RandomFollower.svelte | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/lib/Tools/RandomFollower.svelte b/src/lib/Tools/RandomFollower.svelte index f47a4441..d50cd7d4 100644 --- a/src/lib/Tools/RandomFollower.svelte +++ b/src/lib/Tools/RandomFollower.svelte @@ -7,18 +7,12 @@ let randomSeed = 0; </script> -<!-- svelte-ignore missing-declaration --> <InputTemplate field="Username" bind:submission event="Random Follower" submitText="Generate" - onSubmit={() => { - randomSeed = Math.random(); - - // eslint-disable-next-line no-undef - umami.track('Random Follower'); - }} + onSubmit={() => (randomSeed = Math.random())} > {#await followers(submission)} Loading followers ... 50% |