Skip to content

Commit

Permalink
Merge pull request #34 from enpitut2023/dev/meetingInfo
Browse files Browse the repository at this point in the history
ミーティングをリンクに変更
  • Loading branch information
pictomo authored Jan 5, 2024
2 parents e3f236c + dc15f2f commit f2b067e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/components/Meeting.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const Meeting = (props) => {
return (
<div>
<div>{meeting.name}</div>
<div>{meeting.url}</div>
<a href={meeting.url}>{meeting.url}</a>
<hr></hr>
<Form meetingId={meetingId} addUserToList={addUserToList} />
<h5>
Expand Down Expand Up @@ -74,7 +74,6 @@ export const Meeting = (props) => {
);
})}
</ul>
;
</div>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion src/main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { CookiesProvider } from "react-cookie";

ReactDOM.createRoot(document.getElementById("root")).render(
<React.StrictMode>
<BrowserRouter basename={process.env.PUBLIC_URL}>
<BrowserRouter>
<CookiesProvider>
<App />
</CookiesProvider>
Expand Down

0 comments on commit f2b067e

Please sign in to comment.