Skip to content

Commit

Permalink
feat: API_URL_PRODUCT 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
GihoKo committed Jul 15, 2024
1 parent 49e1613 commit 442d064
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions src/pages/Main/Channel/_types/interface.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export interface Music {
id: number;
id: string;
title: string;
artist: string;
url: string;
Expand All @@ -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;
Expand Down

0 comments on commit 442d064

Please sign in to comment.