diff --git a/src/contexts/keystore/KeystoreContext.tsx b/src/contexts/keystore/KeystoreContext.tsx index 418cd61..497fe29 100644 --- a/src/contexts/keystore/KeystoreContext.tsx +++ b/src/contexts/keystore/KeystoreContext.tsx @@ -172,7 +172,7 @@ export function KeystoreProvider({ children }: { children: ReactNode }) { } // If password is verified, export the entire keystore - const filename = 'waku-rln-keystore.json'; + const filename = 'keystore.json'; const blob = new Blob([keystore.toString()], { type: 'application/json' }); const url = URL.createObjectURL(blob);