Skip to content

Commit

Permalink
fix: make join room a container
Browse files Browse the repository at this point in the history
  • Loading branch information
spiritanand committed Nov 12, 2023
1 parent 4dca1c8 commit 7adf2dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deploy to aws
name: Deploy to AWS EC2

on:
push:
Expand Down
4 changes: 3 additions & 1 deletion apps/web/app/ama/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"use client";

// join room (enter room details)

import axios, { AxiosError } from "axios";
import { useRouter } from "next/navigation";
import { useEffect } from "react";
Expand Down Expand Up @@ -73,7 +75,7 @@ function Ama({
</h1>

<form
className="m-auto flex flex-col gap-10 p-5 sm:p-0 md:max-w-md"
className="container m-auto flex flex-col gap-10 p-5 sm:p-0 md:max-w-md"
onSubmit={(e) => {
e.preventDefault();

Expand Down

0 comments on commit 7adf2dd

Please sign in to comment.