Skip to content

Commit

Permalink
Add return type
Browse files Browse the repository at this point in the history
  • Loading branch information
blazejkustra committed Sep 11, 2023
1 parent 4506a61 commit acb47d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/actions/ActiveClients.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Onyx from 'react-native-onyx';
import ONYXKEYS from '../../ONYXKEYS';

function setActiveClients(activeClients: string[]) {
function setActiveClients(activeClients: string[]): Promise<void> {
return Onyx.set(ONYXKEYS.ACTIVE_CLIENTS, activeClients);
}

Expand Down

0 comments on commit acb47d1

Please sign in to comment.