From 08d778a24b01c9e6e7a29a152a24c1fd05a07ffc Mon Sep 17 00:00:00 2001 From: Griko Nibras Date: Thu, 8 Feb 2024 20:41:09 +0700 Subject: [PATCH] chore: bump tx history version --- src/context/tx-history.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context/tx-history.ts b/src/context/tx-history.ts index 3a80dd39..e2460cf5 100644 --- a/src/context/tx-history.ts +++ b/src/context/tx-history.ts @@ -27,7 +27,7 @@ const defaultValues: TxHistoryState = {}; export const useTxHistory = create( persist(() => defaultValues, { name: "TxHistoryState", - version: 2, + version: 3, }), );