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
251 B 6 lines
1export const profileKeys = { 2 all: () => ['profiles'] as const, 3 profile: (didOrHandle: string, includeStats?: boolean) => 4 [...profileKeys.all(), didOrHandle, { includeStats }] as const, 5 mine: () => [...profileKeys.all(), 'mine'] as const, 6};