Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ export function AppBridgeProvider({ children }: AppBridgeProviderProps) {
try {
const data = JSON.parse(jsonData);
setGenerateReviewData(data.result);
alert("디버깅 메시지: " + JSON.stringify(data.result));
} catch (error) {
console.error("Invalid JSON data for generated review:", error);
}
Expand Down
1 change: 0 additions & 1 deletion src/pages/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ const SHARE_TEXT =

const HomePage = () => {
const { send } = useAppBridge();
alert("디버깅 메시지: 홈 " + JSON.stringify(SHARE_TEXT));

return (
<>
Expand Down
11 changes: 11 additions & 0 deletions src/pages/LoadingPage/LoadingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,17 @@ const LoadingPage = () => {
최대 30초까지 소요될 수 있어요
</Text>
</div>
<div
style={{
padding: "20px",
backgroundColor: "#f8f9fa",
borderRadius: "8px",
marginTop: "20px",
}}
>
<h3>🔍 디버깅용 데이터</h3>
<pre>{JSON.stringify(generateReviewData, null, 2)}</pre>
</div>

<div className={styles.Image}>
<img src="/assets/img/img-loading.webp" alt="createReviewImg" />
Expand Down