Skip to content

Commit

Permalink
fix(getProviderIdUseCase): revert breaking change to an enum
Browse files Browse the repository at this point in the history
  • Loading branch information
ofreyssinet-ledger committed Feb 2, 2024
1 parent 726f71b commit 34830ce
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { DeviceInfoEntity } from "../entities/DeviceInfoEntity";

export enum PROVIDERS {
default = 1,
das = 2,
club = 3,
shitcoins = 4,
ee = 5,
}
export const PROVIDERS: Record<string, number> = {
default: 1,
das: 2,
club: 3,
shitcoins: 4,
ee: 5,
};

export function getProviderIdUseCase({
deviceInfo,
Expand Down

0 comments on commit 34830ce

Please sign in to comment.