Skip to content

Commit

Permalink
Fix. product status (#216) (#217)
Browse files Browse the repository at this point in the history
* fix: 최종 QA 리스트업 수정 (#196)

* feat: 매물 워터마크 추가

* fix: 마이페이지 판매 완료버튼 완료 이후 동작 X

* Bug fix.magazine banner fix (#198)


* fix. delete useMemo magazine banner

---------



* Bug fix.delete use client syntax (#200)



* fix. delete use client syntax

* Add.toast UI editor align (#202)

* fix : delete magazine useMemo (banner) (#199)


* Bug fix.magazine banner fix (#198)

* fix. delete useMemo magazine banner

---------



---------



* fix: delete use client syntax (#201)

* fix: 최종 QA 리스트업 수정 (#196)

* feat: 매물 워터마크 추가

* fix: 마이페이지 판매 완료버튼 완료 이후 동작 X

* Bug fix.magazine banner fix (#198)


* fix. delete useMemo magazine banner

---------



* Bug fix.delete use client syntax (#200)



* fix. delete use client syntax

---------



* fix. override add toastui-editor-contents p, img tag(flex, radius)

---------



* Add.toast UI editor align (#204)

* fix : delete magazine useMemo (banner) (#199)


* Bug fix.magazine banner fix (#198)

* fix. delete useMemo magazine banner

---------



---------



* fix: delete use client syntax (#201)

* fix: 최종 QA 리스트업 수정 (#196)

* feat: 매물 워터마크 추가

* fix: 마이페이지 판매 완료버튼 완료 이후 동작 X

* Bug fix.magazine banner fix (#198)


* fix. delete useMemo magazine banner

---------



* Bug fix.delete use client syntax (#200)



* fix. delete use client syntax

---------



* fix. override add toastui-editor-contents p, img tag(flex, radius)

* fix. override add toastui-editor-contents p, img tag(flex, radius)

---------



* Fix.editor css (#206)


* fix. toast editor css bug & add editor toolbarItems

* Fix.product price (#208)

* hotFix. editor css bug, add toolbar items (#207)



* fix. toast editor css bug & add editor toolbarItems

* fix. product price handling

* Fix.toastui css (#210)

* hotFix. editor css bug, add toolbar items (#207)



* fix. toast editor css bug & add editor toolbarItems

* Develop (#209)

* fix: 최종 QA 리스트업 수정 (#196)

* feat: 매물 워터마크 추가

* fix: 마이페이지 판매 완료버튼 완료 이후 동작 X

* Bug fix.magazine banner fix (#198)


* fix. delete useMemo magazine banner

---------



* Bug fix.delete use client syntax (#200)



* fix. delete use client syntax

* Add.toast UI editor align (#202)

* fix : delete magazine useMemo (banner) (#199)


* Bug fix.magazine banner fix (#198)

* fix. delete useMemo magazine banner

---------



---------



* fix: delete use client syntax (#201)

* fix: 최종 QA 리스트업 수정 (#196)

* feat: 매물 워터마크 추가

* fix: 마이페이지 판매 완료버튼 완료 이후 동작 X

* Bug fix.magazine banner fix (#198)


* fix. delete useMemo magazine banner

---------



* Bug fix.delete use client syntax (#200)



* fix. delete use client syntax

---------



* fix. override add toastui-editor-contents p, img tag(flex, radius)

---------



* Add.toast UI editor align (#204)

* fix : delete magazine useMemo (banner) (#199)


* Bug fix.magazine banner fix (#198)

* fix. delete useMemo magazine banner

---------



---------



* fix: delete use client syntax (#201)

* fix: 최종 QA 리스트업 수정 (#196)

* feat: 매물 워터마크 추가

* fix: 마이페이지 판매 완료버튼 완료 이후 동작 X

* Bug fix.magazine banner fix (#198)


* fix. delete useMemo magazine banner

---------



* Bug fix.delete use client syntax (#200)



* fix. delete use client syntax

---------



* fix. override add toastui-editor-contents p, img tag(flex, radius)

* fix. override add toastui-editor-contents p, img tag(flex, radius)

---------



* Fix.editor css (#206)


* fix. toast editor css bug & add editor toolbarItems

* Fix.product price (#208)

* hotFix. editor css bug, add toolbar items (#207)



* fix. toast editor css bug & add editor toolbarItems

* fix. product price handling

---------



* fix. editor css

---------



* fix. change product status

* fix. change product status

---------

Co-authored-by: Junseo <[email protected]>
  • Loading branch information
doyupK and blan19 authored Dec 19, 2023
1 parent 2e256d8 commit 3bf36cc
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,14 @@ import {
import { useQueryClient } from '@tanstack/react-query';
import { useRemoveCommunityPost } from 'http/server/community';
import { QUERY_KEYS, useAccountCategory } from 'http/server/account';
import { useDebounce } from '@supercarmarket/hooks';
import { useDebounce, useUrlQuery } from '@supercarmarket/hooks';
import { type Market } from 'types/market';
import { type AccountCategory } from 'constants/link/account';
import {
useDeleteMarketPost,
useUpdateMarketSellStatus,
} from 'http/server/market';
import { useSearchParams } from 'next/navigation';

interface AccountCategoryProps {
sub: string;
Expand Down Expand Up @@ -145,11 +146,12 @@ const AccountCategoryList = React.memo(function AccountCategory({
isMyAccountPage &&
(tab === 'community' ||
(profile.role === 'dealer' && tab === 'dealer-product'));
const page = useSearchParams().get('page');
const { data, isLoading, isFetching, refetch } = useAccountCategory(
sub,
{
category: tab,
page: 0,
page: Number(page),
size: 20,
},
session.data?.accessToken,
Expand Down

1 comment on commit 3bf36cc

@vercel
Copy link

@vercel vercel bot commented on 3bf36cc Dec 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.