We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dff077f commit 2d5d252Copy full SHA for 2d5d252
1 file changed
src/selectors/Card.ts
@@ -17,7 +17,7 @@ import type Beta from '@src/types/onyx/Beta';
17
* Input key format: "cards_${domainID}_${feedName}" (e.g., "cards_12345_oauth.chase.com")
18
* Output key format: "${domainID}_${feedName}" (e.g., "12345_oauth.chase.com")
19
*/
20
-const buildFeedKeysWithAssignedCards = (allWorkspaceCards: OnyxCollection<WorkspaceCardsList>, betas?: OnyxEntry<Beta[]>): Record<string, true> => {
+const buildFeedKeysWithAssignedCards = (allWorkspaceCards: OnyxCollection<WorkspaceCardsList>): Record<string, true> => {
21
const result: Record<string, true> = {};
22
23
for (const [key, cards] of Object.entries(allWorkspaceCards ?? {})) {
0 commit comments