From 94a541fc9c4087f6b57c7261d3f9dc12200cdbe8 Mon Sep 17 00:00:00 2001 From: SeongHyun Kim Date: Tue, 3 Mar 2026 17:46:50 +0900 Subject: [PATCH] =?UTF-8?q?fix(pop-cart):=20cart=5Ftype=20=EB=B9=88=20?= =?UTF-8?q?=EB=AC=B8=EC=9E=90=EC=97=B4=20=EC=A0=80=EC=9E=A5=20=EB=B2=84?= =?UTF-8?q?=EA=B7=B8=20=EC=88=98=EC=A0=95=20("pop"=20=EB=B3=B5=EC=9B=90)?= =?UTF-8?q?=20-=20cartItemToDbRecord=EC=97=90=EC=84=9C=20cart=5Ftype:=20""?= =?UTF-8?q?=20->=20"pop"=EC=9C=BC=EB=A1=9C=20=EB=B3=B5=EC=9B=90=20-=20load?= =?UTF-8?q?FromDb=20=ED=95=84=ED=84=B0=EC=97=90=20cart=5Ftype:=20"pop"=20?= =?UTF-8?q?=EC=A1=B0=EA=B1=B4=20=EC=B6=94=EA=B0=80=ED=95=98=EC=97=AC=20POP?= =?UTF-8?q?=20=EB=8D=B0=EC=9D=B4=ED=84=B0=EB=A7=8C=20=EB=A1=9C=EB=93=9C=20?= =?UTF-8?q?-=20=EB=A6=AC=ED=8C=A9=ED=86=A0=EB=A7=81(9aaf0575)=20=EC=A4=91?= =?UTF-8?q?=20=EB=88=84=EB=9D=BD=EB=90=9C=20=EA=B0=92=20=EB=B3=B5=EC=9B=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/hooks/pop/useCartSync.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/hooks/pop/useCartSync.ts b/frontend/hooks/pop/useCartSync.ts index 873ce5da..8060f67d 100644 --- a/frontend/hooks/pop/useCartSync.ts +++ b/frontend/hooks/pop/useCartSync.ts @@ -109,7 +109,7 @@ function cartItemToDbRecord( : item.row; return { - cart_type: "", + cart_type: "pop", screen_id: screenId, source_table: item.sourceTable, row_key: item.rowKey, @@ -162,6 +162,7 @@ export function useCartSync( size: 500, filters: { screen_id: screenId, + cart_type: "pop", status: "in_cart", }, });