From 442d064d454a32b9a6b7a39374fc8ce2b3401f13 Mon Sep 17 00:00:00 2001 From: giho Date: Mon, 15 Jul 2024 15:37:37 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20API=5FURL=5FPRODUCT=20=EA=B5=AC?= =?UTF-8?q?=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 2 +- src/pages/Main/Channel/_types/interface.ts | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 0c4d939..d95c110 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,7 +24,7 @@ jobs: echo GOOGLE_OAUTH_CLIENT_ID=${{ secrets.GOOGLE_OAUTH_CLIENT_ID }} >> .env.local echo GOOGLE_OAUTH_CLIENT_SECRET=${{ secrets.GOOGLE_OAUTH_CLIENT_SECRET }} >> .env.local echo GOOGLE_API_KEY=${{ secrets.GOOGLE_API_KEY }} >> .env.local - echo API_URL=${{ secrets.API_URL }} >> .env.local + echo API_URL=${{ secrets.API_URL_PRODUCT }} >> .env.local - name: Build project run: npm run build diff --git a/src/pages/Main/Channel/_types/interface.ts b/src/pages/Main/Channel/_types/interface.ts index b934590..99309ca 100644 --- a/src/pages/Main/Channel/_types/interface.ts +++ b/src/pages/Main/Channel/_types/interface.ts @@ -1,5 +1,5 @@ export interface Music { - id: number; + id: string; title: string; artist: string; url: string; @@ -15,9 +15,9 @@ export interface MusicItemProps { } export interface ChatMessage { - id: number; - channelId: number; - userId: number; + id: string; + channelId: string; + userId: string; content: string; createdAt: string; updatedAt: string;