diff --git a/frontend/src/state/hooks.ts b/frontend/src/state/hooks.ts index 0da9968d3..d8fdf6256 100644 --- a/frontend/src/state/hooks.ts +++ b/frontend/src/state/hooks.ts @@ -218,6 +218,8 @@ export function useUsernames() { const load = async (userID: string) => { if (userID === "github") { set((s) => ({ ...s, [userID]: "github" })); + } else if (userID === "auto redeploy") { + set((s) => ({ ...s, [userID]: "auto redeploy" })); } else { const username = await client.get_username(userID); set((s) => ({ ...s, [userID]: username }));