From 5715b2e37471dd134933fc433fef509f0934b9ed Mon Sep 17 00:00:00 2001 From: katspaugh <381895+katspaugh@users.noreply.github.com> Date: Thu, 12 Dec 2024 14:08:38 +0100 Subject: [PATCH] Add title --- src/components/tx-flow/flows/UpdateSafe/UpdateSafeReview.tsx | 4 ++++ src/utils/__tests__/safe-migrations.test.ts | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/tx-flow/flows/UpdateSafe/UpdateSafeReview.tsx b/src/components/tx-flow/flows/UpdateSafe/UpdateSafeReview.tsx index a9eea0d76e..df1612cf91 100644 --- a/src/components/tx-flow/flows/UpdateSafe/UpdateSafeReview.tsx +++ b/src/components/tx-flow/flows/UpdateSafe/UpdateSafeReview.tsx @@ -30,6 +30,10 @@ export const UpdateSafeReview = () => { return ( + + Current version: {safe.version} → new version: {latestSafeVersion} + + Update now to take advantage of new features and the highest security standards available. diff --git a/src/utils/__tests__/safe-migrations.test.ts b/src/utils/__tests__/safe-migrations.test.ts index cc02060c81..c778bf0d43 100644 --- a/src/utils/__tests__/safe-migrations.test.ts +++ b/src/utils/__tests__/safe-migrations.test.ts @@ -10,11 +10,10 @@ import { getSafeL2SingletonDeployment, getSafeSingletonDeployment, getSafeToL2MigrationDeployment, - getSafeMigrationDeployment, } from '@safe-global/safe-deployments' import type Safe from '@safe-global/protocol-kit' import { encodeMultiSendData } from '@safe-global/protocol-kit' -import { Multi_send__factory, Safe_to_l2_migration__factory, Safe_migration__factory } from '@/types/contracts' +import { Multi_send__factory, Safe_to_l2_migration__factory } from '@/types/contracts' import { faker } from '@faker-js/faker' import { getAndValidateSafeSDK } from '@/services/tx/tx-sender/sdk' import { decodeMultiSendData } from '@safe-global/protocol-kit/dist/src/utils'