Commit 8d4d7ea 1 parent 8f216c5 commit 8d4d7ea Copy full SHA for 8d4d7ea
File tree 1 file changed +3
-5
lines changed
packages/debugger/app/components
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -105,12 +105,10 @@ export const FrameDebugger = React.forwardRef<
105
105
resolveSigner ( ) {
106
106
switch ( protocol . protocol ) {
107
107
case "farcaster" :
108
- // it creates copies of the signer which is bad because if the signer is internally
109
- // updated, we see only old value although the signer is updated. This is true only for public properties
110
- // probably getters will be better in this regard?
111
- return farcasterSignerState . withContext ( frameContext . farcaster ) ;
112
108
case "farcaster_v2" :
113
- return farcasterSignerState . withContext ( frameContext . farcaster ) ;
109
+ return farcasterSignerState . withContext ( frameContext . farcaster , {
110
+ specification : protocol . specification ,
111
+ } ) ;
114
112
case "xmtp" :
115
113
return xmtpSignerState . withContext ( frameContext . xmtp ) ;
116
114
case "lens" :
You can’t perform that action at this time.
0 commit comments