@@ -47,6 +47,15 @@ const t = await getFixedT(locale);
4747 if (
4848 [" Compatible" , " Compatible via Web Browser" ].includes (data .display_result )
4949 ) {
50+ if (data .compatibility == " native" ) {
51+ return (
52+ <p class = " text-green-500 flex items-center text-xl md:text-3xl justify-end w-full pr-8" >
53+ <span class = " text-2xl md:text-5xl pr-2 md:pr-4" >✓</span >{ " " }
54+ { t (` application_display_result.${data .display_result } ` )}
55+ { t (` application_compatibility_values.${data .compatibility } ` )}
56+ </p >
57+ );
58+ }
5059 return (
5160 <p class = " text-green-500 flex items-center text-xl md:text-3xl justify-end w-full pr-8" >
5261 <span class = " text-2xl md:text-5xl pr-2 md:pr-4" >✓</span >{ " " }
@@ -55,12 +64,28 @@ const t = await getFixedT(locale);
5564 );
5665 }
5766 if (data .display_result === " Vendor Announced - Launching Soon" ) {
67+ if (data .compatibility == " native" ) {
68+ return (
69+ <p class = " text-green-500 flex items-center text-xl md:text-3xl justify-end w-full pr-8" >
70+ { t (` application_display_result.${data .display_result } ` )}
71+ { t (` application_compatibility_values.${data .compatibility } ` )}
72+ </p >
73+ );
74+ }
5875 return (
5976 <p class = " text-green-500 flex items-center text-xl md:text-3xl justify-end w-full pr-8" >
6077 { t (` application_display_result.${data .display_result } ` )}
6178 </p >
6279 );
6380 }
81+ if (data .compatibility == " native" ) {
82+ return (
83+ <p class = " text-red-500 flex items-center text-xl md:text-3xl justify-end w-full pr-8" >
84+ { t (` application_display_result.${data .display_result } ` )}
85+ { t (` application_compatibility_values.${data .compatibility } ` )}
86+ </p >
87+ );
88+ }
6489 return (
6590 <p class = " text-red-500 flex items-center text-xl md:text-3xl justify-end w-full pr-8" >
6691 { t (` application_display_result.${data .display_result } ` )}
0 commit comments