Skip to content

Commit 2d5d252

Browse files
committed
uneeded param
1 parent dff077f commit 2d5d252

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/selectors/Card.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import type Beta from '@src/types/onyx/Beta';
1717
* Input key format: "cards_${domainID}_${feedName}" (e.g., "cards_12345_oauth.chase.com")
1818
* Output key format: "${domainID}_${feedName}" (e.g., "12345_oauth.chase.com")
1919
*/
20-
const buildFeedKeysWithAssignedCards = (allWorkspaceCards: OnyxCollection<WorkspaceCardsList>, betas?: OnyxEntry<Beta[]>): Record<string, true> => {
20+
const buildFeedKeysWithAssignedCards = (allWorkspaceCards: OnyxCollection<WorkspaceCardsList>): Record<string, true> => {
2121
const result: Record<string, true> = {};
2222

2323
for (const [key, cards] of Object.entries(allWorkspaceCards ?? {})) {

0 commit comments

Comments
 (0)