File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed
components/provider/AppBridgeProvider Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ export function AppBridgeProvider({ children }: AppBridgeProviderProps) {
5656 try {
5757 const data = JSON . parse ( jsonData ) ;
5858 setGenerateReviewData ( data . result ) ;
59+ alert ( "디버깅 메시지: " + JSON . stringify ( data . result ) ) ;
5960 } catch ( error ) {
6061 console . error ( "Invalid JSON data for generated review:" , error ) ;
6162 }
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ const SHARE_TEXT =
99
1010const HomePage = ( ) => {
1111 const { send } = useAppBridge ( ) ;
12+ alert ( "디버깅 메시지: 홈 " + JSON . stringify ( SHARE_TEXT ) ) ;
1213
1314 return (
1415 < >
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ const LoadingPage = () => {
2222 type : AppBridgeMessageType . RECEIVE_GENERATED_REVIEW ,
2323 payload : { result : String ( generateReviewData ) } ,
2424 } ) ;
25+ alert ( "디버깅 메시지: generateReviewData" + generateReviewData ) ;
2526
2627 if ( generateReviewData . length > 0 ) {
2728 navigateToReviewResult ( ) ;
You can’t perform that action at this time.
0 commit comments