@@ -27,7 +27,7 @@ public class ThirdwebManagerEditor : Editor
27
27
private SerializedProperty walletConnectExplorerRecommendedWalletIdsProperty ;
28
28
private SerializedProperty factoryAddressProperty ;
29
29
private SerializedProperty gaslessProperty ;
30
- private SerializedProperty doNotDeployOnSignMessageProperty ;
30
+ private SerializedProperty deployOnSignProperty ;
31
31
private SerializedProperty bundlerUrlProperty ;
32
32
private SerializedProperty paymasterUrlProperty ;
33
33
private SerializedProperty entryPointAddressProperty ;
@@ -68,7 +68,7 @@ private void OnEnable()
68
68
walletConnectExplorerRecommendedWalletIdsProperty = serializedObject . FindProperty ( "walletConnectExplorerRecommendedWalletIds" ) ;
69
69
factoryAddressProperty = serializedObject . FindProperty ( "factoryAddress" ) ;
70
70
gaslessProperty = serializedObject . FindProperty ( "gasless" ) ;
71
- doNotDeployOnSignMessageProperty = serializedObject . FindProperty ( "doNotDeployOnSignMessage " ) ;
71
+ deployOnSignProperty = serializedObject . FindProperty ( "deployOnSign " ) ;
72
72
bundlerUrlProperty = serializedObject . FindProperty ( "bundlerUrl" ) ;
73
73
paymasterUrlProperty = serializedObject . FindProperty ( "paymasterUrl" ) ;
74
74
entryPointAddressProperty = serializedObject . FindProperty ( "entryPointAddress" ) ;
@@ -306,7 +306,7 @@ public override void OnInspectorGUI()
306
306
307
307
if ( showSmartWalletOptionalFields )
308
308
{
309
- EditorGUILayout . PropertyField ( doNotDeployOnSignMessageProperty ) ;
309
+ EditorGUILayout . PropertyField ( deployOnSignProperty ) ;
310
310
EditorGUILayout . PropertyField ( bundlerUrlProperty ) ;
311
311
EditorGUILayout . PropertyField ( paymasterUrlProperty ) ;
312
312
EditorGUILayout . PropertyField ( entryPointAddressProperty ) ;
0 commit comments