From 9db15eda6882d7b27c37b5968d11ee6b051ae125 Mon Sep 17 00:00:00 2001 From: outragedhuman Date: Sun, 29 Jan 2023 11:46:55 -0600 Subject: [PATCH 1/2] add icon to add button in addressbook --- .../SearchBar/components/AddressBook/AddressBook.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/SearchBar/components/AddressBook/AddressBook.tsx b/src/components/SearchBar/components/AddressBook/AddressBook.tsx index 474719b..2407f62 100644 --- a/src/components/SearchBar/components/AddressBook/AddressBook.tsx +++ b/src/components/SearchBar/components/AddressBook/AddressBook.tsx @@ -10,6 +10,7 @@ import useBreakpoint from "hooks/useBreakpoint"; import useAPIRouter from "hooks/useAPIRouter"; import { NXTtoNQT } from "utils/common/NXTtoNQT"; import { BigNumber } from "bignumber.js"; +import AddIcon from "@mui/icons-material/Add"; interface IAddNewAddressInputProps { setNewAddressFn?: (address: string) => void; @@ -50,8 +51,8 @@ const AddNewAddressInput: React.FC = ({ setNewAddressF ) : ( - - + + }> + Add )} @@ -217,7 +218,6 @@ const AddressBook: React.FC = () => { }; const StyledPlusButton = styled(Button)(() => ({ - width: "5%", position: "absolute", top: "40px", right: "25px", From e15beabc1eb8b3d662ecd62103dd5644ac44bfad Mon Sep 17 00:00:00 2001 From: outragedhuman Date: Sun, 29 Jan 2023 11:48:51 -0600 Subject: [PATCH 2/2] update release notes & package.json --- RELEASE-NOTES.md | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index f6ceca6..9fcb211 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -14,3 +14,7 @@ - Add ability to send JUP directly from the address book component - Displays the last block time on the Generators page in 24hr time format instead of 12hr - Remove My Accounts from gear menu + +## 0.0.4 + +- Add icon and text to address book add button diff --git a/package.json b/package.json index 21e3350..238d44e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jupiter-wallet", - "version": "0.0.3", + "version": "0.0.4", "private": true, "scripts": { "proxy": "node proxy/server.js",