Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfixes/user accounts #160

Merged
merged 2 commits into from
Apr 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading