Skip to content

Commit

Permalink
build error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zestlee1106 committed Sep 30, 2023
1 parent e3437c0 commit 6201d1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ function Home() {
const makeFilters = (filterParams: FilterType) => {
const resultFilter: string[] = [];
Object.keys(filterParams).forEach((key) => {
// eslint-disable-next-line no-unused-expressions
filterParams[`${key}`] && resultFilter.push(commonTranslation.t(`${key}`));
});
setFilters(() => [...resultFilter]);
Expand Down
5 changes: 2 additions & 3 deletions pages/room/add/step2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ import React from 'react';

function Step2() {
const router = useRouter();
const { query } = router;
const data = JSON.parse(query.data as string);
console.log('%c 🤩🤩🤩 영우의 로그 : ', 'font-size: x-large; color: #bada55;', data);
// const { query } = router;
// const data = JSON.parse(query.data as string);

return <div>step2</div>;
}
Expand Down

0 comments on commit 6201d1f

Please sign in to comment.