chore: auto-fix lint & formatting [skip ci]

This commit is contained in:
github-actions[bot] 2026-08-02 16:44:42 +00:00
parent 4edd468ace
commit 2e4cb24c1d
17 changed files with 386 additions and 120 deletions

View file

@ -87,9 +87,6 @@ export async function getDiscordLink(
return await kv.get(`discord-link:${discordUserId}`, "text");
}
export async function removeDiscordLink(
kv: KVNamespace,
discordUserId: string,
): Promise<void> {
export async function removeDiscordLink(kv: KVNamespace, discordUserId: string): Promise<void> {
await kv.delete(`discord-link:${discordUserId}`);
}