Skip to content

Commit

Permalink
Release/1.7.1 (#881)
Browse files Browse the repository at this point in the history
* removed the button from the footer and fixed indent

* Release 1.7.1 version

---------

Co-authored-by: ost-ptk <[email protected]>
  • Loading branch information
Comp0te and ost-ptk authored Dec 6, 2023
1 parent a8b5f8f commit f8fba6a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 20 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Casper Wallet",
"description": "Securely manage your CSPR tokens and interact with dapps with the self-custody wallet for the Casper blockchain.",
"version": "1.7.0",
"version": "1.7.1",
"author": "MAKE LLC",
"scripts": {
"devtools:redux": "redux-devtools --hostname=localhost",
Expand Down
2 changes: 1 addition & 1 deletion src/apps/popup/pages/wallet-qr-code/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const QRContainer = styled(CenteredFlexRow)`
padding: 20px 16px;
background-color: ${({ theme }) => theme.color.backgroundPrimary};
border-radius: ${({ theme }) => theme.borderRadius.base}px;
margin-top: 20px;
margin-top: 24px;
`;

interface WalletQrCodePageContentProps {
Expand Down
14 changes: 0 additions & 14 deletions src/apps/popup/pages/wallet-qr-code/index.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
import React, { useCallback, useState } from 'react';
import { Trans, useTranslation } from 'react-i18next';
import { shallowEqual, useSelector } from 'react-redux';

import {
FooterButtonsContainer,
HeaderSubmenuBarNavLink,
PopupHeader,
PopupLayout
} from '@libs/layout';
import { WalletQrCodePageContent } from '@popup/pages/wallet-qr-code/content';
import { RouterPath, useTypedNavigate } from '@popup/router';
import { Button } from '@libs/ui';
import {
selectSecretPhrase,
selectVaultDerivedAccounts,
Expand All @@ -32,9 +28,6 @@ export const WalletQrCodePage = () => {
shallowEqual
);

const navigate = useTypedNavigate();
const { t } = useTranslation();

const setPasswordConfirmed = useCallback(() => {
setIsPasswordConfirmed(true);
}, []);
Expand Down Expand Up @@ -77,13 +70,6 @@ export const WalletQrCodePage = () => {
/>
)}
renderContent={() => <WalletQrCodePageContent qrStrings={qrStrings} />}
renderFooter={() => (
<FooterButtonsContainer>
<Button onClick={() => navigate(RouterPath.Home)}>
<Trans t={t}>I'm done</Trans>
</Button>
</FooterButtonsContainer>
)}
/>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@
CODE_SIGN_ENTITLEMENTS = "Casper Wallet/Casper Wallet.entitlements";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 37;
CURRENT_PROJECT_VERSION = 38;
ENABLE_HARDENED_RUNTIME = YES;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = "Casper Wallet/Info.plist";
Expand All @@ -578,7 +578,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 1.7.0;
MARKETING_VERSION = 1.7.1;
OTHER_LDFLAGS = (
"-framework",
SafariServices,
Expand All @@ -601,7 +601,7 @@
CODE_SIGN_ENTITLEMENTS = "Casper Wallet/Casper Wallet.entitlements";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 37;
CURRENT_PROJECT_VERSION = 38;
ENABLE_HARDENED_RUNTIME = YES;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = "Casper Wallet/Info.plist";
Expand All @@ -615,7 +615,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 1.7.0;
MARKETING_VERSION = 1.7.1;
OTHER_LDFLAGS = (
"-framework",
SafariServices,
Expand Down

0 comments on commit f8fba6a

Please sign in to comment.