Commit 3b19aa7 1 parent 70f349d commit 3b19aa7 Copy full SHA for 3b19aa7
File tree 1 file changed +2
-6
lines changed
packages/debugger/app/components
1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -146,10 +146,6 @@ export function FrameAppDebuggerNotifications({
146
146
frameAppNotificationManager . state ?. frame . status === "added" &&
147
147
! ! frameAppNotificationManager . state . frame . notificationDetails ;
148
148
149
- const unsupportedSignerStatus =
150
- farcasterSigner ?. status !== "approved" &&
151
- farcasterSigner ?. status !== "impersonating" ;
152
-
153
149
return (
154
150
< div className = "grid grid-rows-[auto_1fr] h-full" >
155
151
< div className = "w-full" >
@@ -162,7 +158,7 @@ export function FrameAppDebuggerNotifications({
162
158
</ AlertDescription >
163
159
</ Alert >
164
160
) }
165
- { unsupportedSignerStatus && (
161
+ { farcasterSigner ?. status === "impersonating" && (
166
162
< Alert className = "mb-4" variant = "destructive" >
167
163
< AlertTriangleIcon className = "h-4 w-4" />
168
164
< AlertTitle > Warning: Unsupported Farcaster signer</ AlertTitle >
@@ -173,7 +169,7 @@ export function FrameAppDebuggerNotifications({
173
169
</ Alert >
174
170
) }
175
171
</ div >
176
- { ! unsupportedSignerStatus && (
172
+ { farcasterSigner ?. status === "approved" && (
177
173
< div className = "flex flex-row flex-grow gap-4 h-full w-full overflow-hidden" >
178
174
< div className = "w-1/3" >
179
175
< FrameAppNotificationsControlPanel frameApp = { frameApp } />
You can’t perform that action at this time.
0 commit comments