Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikchrastek committed Nov 15, 2023
1 parent c180884 commit 89749fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/storage/ResellerStorage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { InMemoryStorage } from "./InMemoryStorage";
export class ResellerStorage implements InMemoryStorage<Reseller> {
public get(apiKey: string): Nullable<Reseller> {
if ((Object.keys(Reseller) as string[]).includes(apiKey)) {
return Reseller[apiKey as Reseller]
return Reseller[apiKey as Reseller];
}

return null;
Expand Down

0 comments on commit 89749fc

Please sign in to comment.