Skip to content

Commit

Permalink
Fixes balance fetch
Browse files Browse the repository at this point in the history
  • Loading branch information
Nabcellent committed May 3, 2023
1 parent d9107af commit 2f948ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/repositories/balance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ export class Balance {

const { Credits } = Data.find((data: any) => data.PluginType === pluginType)

return Number(Number(Credits.slice(3)).toFixed(2));
return Number(Credits);
}
}

0 comments on commit 2f948ff

Please sign in to comment.