Skip to content

Commit

Permalink
Chore: console.log제거, width 조절
Browse files Browse the repository at this point in the history
  • Loading branch information
irenee-14 committed Sep 9, 2024
1 parent 8e11e6b commit a37f1f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/agenda/Ticket/Ticket.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interface TicketProps {
const Ticket = ({ type }: { type: string }) => {
const { data } = useFetchGet<TicketProps>({ url: '/ticket' });
const { openModal } = useModal();
console.log(data);

return (
<>
{type === 'page' ? (
Expand Down
2 changes: 1 addition & 1 deletion styles/agenda/Profile/CurrentList.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

.currentItemWrapper {
width: 100%;
@media screen and (min-width: 961px) {
@media screen and (min-width: 1441px) {
width: 48%;
}
}
Expand Down
2 changes: 1 addition & 1 deletion styles/agenda/Profile/HistoryList.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
justify-content: flex-start;
align-items: flex-start;
gap: 0.5rem;
@media screen and (min-width: 1401px) {
@media screen and (min-width: 1441px) {
width: 48%;
}
}
Expand Down

0 comments on commit a37f1f8

Please sign in to comment.