feat(ui): update ui style

This commit is contained in:
RhenCloud 2026-08-16 21:25:57 +08:00
parent ca6dfd3f64
commit 47d7c9105b
No known key found for this signature in database
GPG key ID: A574A617378C4E0B
35 changed files with 1577 additions and 591 deletions

View file

@ -6,7 +6,7 @@ import {
revokeInvite,
acceptInvite,
} from "../server/lib/web/invites";
import { saveGroups, loadGroups } from "../server/lib/web/groups";
import { saveGroups, loadGroups, invalidateGroupsCache } from "../server/lib/web/groups";
import type { Group } from "../server/lib/types";
function createMockKV(): KVNamespace {
@ -49,6 +49,7 @@ describe("invites", () => {
beforeEach(() => {
kv = createMockKV();
invalidateGroupsCache();
});
it("creates and reads back an invite", async () => {