Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 16 additions & 5 deletions src/components/Home/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,26 @@ const Home = () => {
JSON.stringify([
{ 상호명: "바나프레소" },
{
품명: "아이스 디카페인 아메리카노, 아이스 아메리카노, 버터리소금빵, 에그듬뿍모닝샌드위치, 아이스 빅바나 콜드브루",
품명: "아이스 디카페인 아메리카노",
},
{
품명: "아이스 아메리카노",
},
{
품명: "버터리소금빵",
},
{
품명: "에그듬뿍모닝샌드위치",
},
{
품명: "아이스 빅바나 콜드브루",
},
{ 가격: 13500 },
]),
);
}
setTimeout(() => {
navigateToReceiptEdit();
}, 3000);

navigateToReceiptEdit();
};

const { scanData, setScanData } = useScanDataStore();
Expand Down Expand Up @@ -83,7 +94,7 @@ const Home = () => {
text="카메라"
iconName="camera"
onClick={() => {
// send({ type: AppBridgeMessageType.OPEN_CAMERA, payload: "" });
send({ type: AppBridgeMessageType.OPEN_CAMERA, payload: "" });
setTimeout(() => {
testNavigate();
}, 5000);
Expand Down