Skip to content

Commit

Permalink
[fix] api 링크 수정 (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
choihooo authored Oct 31, 2024
1 parent e6d0e15 commit e198360
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fe/src/app/event-maps/[id]/components/BottomDrawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default function BottomDrawer({
// 특정 nonMemberId에 대한 핑 요청
try {
const response = await fetch(
`http://110.165.17.236:8081/api/v1/nonmembers/pings/${nonMemberId}`,
`${process.env.NEXT_PUBLIC_API_BASE_URL}/nonmembers/pings/${nonMemberId}`,
{ method: "GET", headers: { "Content-Type": "application/json" } }
);

Expand Down
4 changes: 2 additions & 2 deletions fe/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import "@/styles/globals.css";
import { ReactNode } from "react";

export const metadata = {
title: "My App",
description: "This is my Next.js app",
title: "Moping!",
description: "Moping",
};

export default function RootLayout({ children }: { children: ReactNode }) {
Expand Down

0 comments on commit e198360

Please sign in to comment.