Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
chore: refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
whilefoo authored Sep 7, 2023
1 parent e628f63 commit 08b7cc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/adapters/supabase/helpers/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ export const getAllAccessLevels = async (username: string, repository: string):
// no access
return null;
}
return { multiplier: data["multiplier_access"], time: data["time_access"], priority: data["priority_access"], price: data["price_access"] };
return { multiplier: data.multiplier_access, time: data.time_access, priority: data.priority_access, price: data.price_access };
};

/**
Expand Down

0 comments on commit 08b7cc0

Please sign in to comment.