Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
shepherd-l committed Feb 16, 2024
1 parent a3b3253 commit cd08c92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/shared/services/Database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,8 @@ export default class Database {

async getUserState(): Promise<UserState> {
const userState = new UserState();
userState.previousOneSignalId = "";
userState.previousExternalId = "";
userState.previousOneSignalId = '';
userState.previousExternalId = '';
// previous<OneSignalId|ExternalId> are used to track changes to the user's state.
// Displayed in the `current` & `previous` fields of the `userChange` event.
userState.previousOneSignalId = await this.get<string>(
Expand Down

0 comments on commit cd08c92

Please sign in to comment.