Skip to content

Commit

Permalink
Bugfixes/user accounts (#160)
Browse files Browse the repository at this point in the history
* fix user account bug

* fix get started message
  • Loading branch information
baktun14 authored Apr 12, 2024
1 parent 52c98b3 commit bde3c19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/src/routers/userRouter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const userRequiredRouter = new Hono();
userRequiredRouter.use("*", requiredUserMiddleware);

const userOptionalRouter = new Hono();
userRequiredRouter.use("*", optionalUserMiddleware);
userOptionalRouter.use("*", optionalUserMiddleware);

userRequiredRouter.post("/manage-subscription", async (c) => {
const userId = getCurrentUserId(c);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export const GetStartedStepper: React.FunctionComponent<Props> = () => {
<StepContent>
<Typography variant="body2" color="textSecondary">
You need at least {minDeposit.akt} AKT or {minDeposit.usdc} USDC in your wallet to deploy on Akash. If you don't have {minDeposit.akt} AKT or{" "}
{minDeposit.usdc} USDC, you can request for some tokens to get started on our <ExternalLink href="https://discord.gg/akash" text="Discord" />.
{minDeposit.usdc} USDC, you can switch to the sandbox or ask help in our <ExternalLink href="https://discord.gg/akash" text="Discord" />.
</Typography>

<Box sx={{ mt: 1, mb: 2, display: "flex", alignItems: "center" }}>
Expand Down

0 comments on commit bde3c19

Please sign in to comment.