Skip to content

Commit eb58c5d

Browse files
authored
Merge branch 'main' into dev
2 parents bfba418 + 6cb70ae commit eb58c5d

4 files changed

Lines changed: 9 additions & 10 deletions

File tree

.eslintrc.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ module.exports = {
77
"@typescript-eslint/no-explicit-any": "off",
88
"@typescript-eslint/no-unused-vars": "off",
99
"@typescript-eslint/no-empty-interface": "off",
10+
"@typescript-eslint/no-empty-function": "off",
11+
"@typescript-eslint/no-empty-object-type": "off",
12+
"no-empty": "off",
13+
"no-case-declarations": "off",
1014
"react/no-unescaped-entities": "off",
1115
"@next/next/no-img-element": "off",
1216
"react-hooks/exhaustive-deps": "off",

pnpm-lock.yaml

Lines changed: 2 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ export default function Home() {
2424
const router = useRouter();
2525

2626
const apiUrls = [
27-
"http://localhost:3001/api/main/aum",
28-
"http://localhost:3001/api/main/fluc",
29-
"http://localhost:3001/api/main/volume",
27+
`${process.env.NEXT_PUBLIC_API_BASE_URL}/api/main/aum`,
28+
`${process.env.NEXT_PUBLIC_API_BASE_URL}/api/main/fluc`,
29+
`${process.env.NEXT_PUBLIC_API_BASE_URL}/api/main/volume`
3030
];
3131

3232
useEffect(() => {

src/components/blocks/ETFDetail/ETFDetailHoldings.client.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ import { useQuery } from "@tanstack/react-query";
1313
// 한국어로 포맷팅
1414
registerLocale("ko", ko);
1515

16-
interface ETFHoldingsData extends ETFHoldingsWithStock {}
17-
1816
// 캘린더 커스텀
1917
const customDatePickerStyles = `
2018
.react-datepicker-wrapper {

0 commit comments

Comments
 (0)