This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / src / webapp / features / profile / lib / profileKeys.ts
209 B 6 lines
1export const profileKeys = { 2 all: () => ['profiles'] as const, 3 profile: (didOrHandle: string) => 4 [...profileKeys.all(), didOrHandle] as const, 5 mine: () => [...profileKeys.all(), 'mine'] as const, 6};