Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldoglas committed Jun 13, 2024
1 parent 4c55939 commit 544b8f6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .env.bkp
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
NEW_EXPENSIFY_URL=https://staging.new.expensify.com/
SECURE_EXPENSIFY_URL=https://secure.expensify.com/
EXPENSIFY_URL=https://www.expensify.com/
EXPENSIFY_PARTNER_NAME=chat-expensify-com
EXPENSIFY_PARTNER_PASSWORD=e21965746fd75f82bb66
PUSHER_APP_KEY=268df511a204fbb60884
USE_WEB_PROXY=true
ENVIRONMENT=staging
SEND_CRASH_REPORTS=true
GOOGLE_GEOLOCATION_API_KEY=AIzaSyD2T1mlByThbUN88O8OPOD8vKuMMwLD4-M
2 changes: 1 addition & 1 deletion src/libs/API/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ type OnyxData = {
let lastUpdateIDAppliedToClient = -1;
Onyx.connect({
key: ONYXKEYS.ONYX_UPDATES_LAST_UPDATE_ID_APPLIED_TO_CLIENT,
callback: (value) => (lastUpdateIDAppliedToClient = (value ?? 0) ? (value ?? 0) : -1),
callback: (value) => (lastUpdateIDAppliedToClient = value ?? 0 ? value ?? 0 : -1),
});

/**
Expand Down

0 comments on commit 544b8f6

Please sign in to comment.