Select the types of activity you want to include in your feed.
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};