Skip to content

Commit

Permalink
Merge pull request #69 from ndyudev/API_Column_Card
Browse files Browse the repository at this point in the history
API Column &  Card, Debug DB
  • Loading branch information
ndyudev authored Dec 12, 2024
2 parents 88942f7 + 921c39f commit 67ae166
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/pages/Boards/_id.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Container from '@mui/material/Container'
import AppBar from '~/components/AppBar/AppBar'
import BoardBar from './BoardBar/BoardBar'
import BoardContent from './BoardContent/BoardContent'
import { mockData } from '~/apis/mock-data'
// import { mockData } from '~/apis/mock-data'

import { fetchBoardDetailsAPI } from '~/apis'

Expand All @@ -24,8 +24,8 @@ function Board() {
return (
<Container disableGutters maxWidth={false} sx={{ height:'100vh'}}>
<AppBar/>
<BoardBar board={mockData.board}/>
<BoardContent board={mockData.board}/>
<BoardBar board={board}/>
<BoardContent board={board}/>
</Container>
)
}
Expand Down
2 changes: 1 addition & 1 deletion src/utils/constants.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const API_ROOT ='http:.//localhost:8017'
export const API_ROOT ='http://localhost:8017'

0 comments on commit 67ae166

Please sign in to comment.