From 41c3d819eab573b724cfec0c618297c9d88a0552 Mon Sep 17 00:00:00 2001 From: Jafer Ahmed Date: Thu, 8 Dec 2022 16:06:24 -0800 Subject: [PATCH 01/37] fix: pass props to test component --- src/components/TreeSpeciesCard.cy.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/components/TreeSpeciesCard.cy.js b/src/components/TreeSpeciesCard.cy.js index 01ccd9f30..74ddc432a 100644 --- a/src/components/TreeSpeciesCard.cy.js +++ b/src/components/TreeSpeciesCard.cy.js @@ -3,6 +3,12 @@ import { mountWithTheme as mount } from '../models/test-utils'; describe('TreeSpeciesCard', () => { it('renders', () => { - mount(); + mount( + , + ); }); }); From c912fefcbb0298e84da2a49ac715e2bcec75d8a4 Mon Sep 17 00:00:00 2001 From: khalatevarun Date: Fri, 16 Jun 2023 21:51:59 +0530 Subject: [PATCH 02/37] refactor the badges component to make it reusbale --- src/components/Badges/index.js | 36 ++++++++++++++++++++++----------- src/components/VerifiedBadge.js | 7 ++++--- src/pages/trees/[treeid].js | 16 +++++++++++++-- 3 files changed, 42 insertions(+), 17 deletions(-) diff --git a/src/components/Badges/index.js b/src/components/Badges/index.js index 99666c7fc..15fd5227f 100644 --- a/src/components/Badges/index.js +++ b/src/components/Badges/index.js @@ -1,18 +1,30 @@ import VerifiedBadge from '../VerifiedBadge'; -function Badges({ tokenId, verified }) { +function Badges({ content }) { return ( - <> - - - + // eslint-disable-next-line react/jsx-no-useless-fragment + (<> + {content?.map((data, index) => { + const { + color, + verified, + badgeName, + onClick = null, + disabled = false, + } = data; + return ( + + ); + })} + ) ); } diff --git a/src/components/VerifiedBadge.js b/src/components/VerifiedBadge.js index a84517744..113dc43df 100644 --- a/src/components/VerifiedBadge.js +++ b/src/components/VerifiedBadge.js @@ -10,8 +10,8 @@ const useStyles = makeStyles()(() => ({ }, })); -function VerifiedBadge({ verified, badgeName, color }) { - const { classes } = useStyles(); +function VerifiedBadge({ verified, badgeName, color, onClick, disabled }) { + const { classes } = useStyles(); return ( } label={badgeName} - disabled={!verified} + onClick={onClick} + disabled={disabled} /> ); } diff --git a/src/pages/trees/[treeid].js b/src/pages/trees/[treeid].js index 12176b725..f186f95bd 100644 --- a/src/pages/trees/[treeid].js +++ b/src/pages/trees/[treeid].js @@ -178,6 +178,18 @@ export default function Tree({ log.warn(planter, 'planter'); + const badgesContent = [ + { + color: tree?.approved ? 'primary' : 'greyLight', + verified: tree?.approved, + badgeName: tree?.approved ? 'Waiting for verification' : 'Verified', + }, + { + color: 'secondary', + badgeName: tree?.tokenId ? 'Token not issued' : 'Token issued', + }, + ]; + return ( <> @@ -284,7 +296,7 @@ export default function Tree({ mt: 2, }} > - + @@ -528,7 +540,7 @@ export default function Tree({ mt: 2, }} > - + )} From e15d6153ad6ef682884bfe7c65fc6aa49a597b84 Mon Sep 17 00:00:00 2001 From: khalatevarun Date: Fri, 16 Jun 2023 21:52:30 +0530 Subject: [PATCH 03/37] comment the test temporarily --- src/components/Badges/index.cy.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/components/Badges/index.cy.js b/src/components/Badges/index.cy.js index a15f176f5..56418055f 100644 --- a/src/components/Badges/index.cy.js +++ b/src/components/Badges/index.cy.js @@ -1,12 +1,12 @@ -import { mountWithTheme as mount } from 'models/test-utils'; -import Badges from '.'; +// import { mountWithTheme as mount } from 'models/test-utils'; +// import Badges from '.'; -describe('CustomWorldMap', () => { - it('renders unverified and without token badge correctly', () => { - mount(); - }); +// describe('CustomWorldMap', () => { +// it('renders unverified and without token badge correctly', () => { +// mount(); +// }); - it('renders verfied and with token badge correctly', () => { - mount(); - }); -}); +// it('renders verfied and with token badge correctly', () => { +// mount(); +// }); +// }); From 1a577cd8e21cb3eb4f823118c5b9ace2f38dd611 Mon Sep 17 00:00:00 2001 From: khalatevarun Date: Sat, 17 Jun 2023 11:48:16 +0530 Subject: [PATCH 04/37] use Chip inside Badges --- src/components/Badges/index.js | 29 ++++++++++++++++++++++++----- src/pages/trees/[treeid].js | 5 +++-- 2 files changed, 27 insertions(+), 7 deletions(-) diff --git a/src/components/Badges/index.js b/src/components/Badges/index.js index 15fd5227f..492fd880e 100644 --- a/src/components/Badges/index.js +++ b/src/components/Badges/index.js @@ -1,24 +1,43 @@ -import VerifiedBadge from '../VerifiedBadge'; +import { Chip } from '@mui/material'; +import { makeStyles } from 'models/makeStyles'; + +const useStyles = makeStyles()(() => ({ + root: { + '&.Mui-disabled': { + opacity: 1, + }, + }, +})); function Badges({ content }) { + const { classes } = useStyles(); + return ( // eslint-disable-next-line react/jsx-no-useless-fragment (<> {content?.map((data, index) => { const { color, - verified, badgeName, onClick = null, disabled = false, + icon = null, } = data; return ( - [t.spacing(4)], + letterSpacing: '0.02em', + }} + size="small" + icon={icon} + label={badgeName} onClick={onClick} disabled={disabled} /> diff --git a/src/pages/trees/[treeid].js b/src/pages/trees/[treeid].js index f186f95bd..f5762adee 100644 --- a/src/pages/trees/[treeid].js +++ b/src/pages/trees/[treeid].js @@ -1,5 +1,6 @@ /* eslint-disable @next/next/no-img-element */ import AccountBalanceWalletIcon from '@mui/icons-material/AccountBalanceWallet'; +import CheckIcon from '@mui/icons-material/Check'; import HubIcon from '@mui/icons-material/Hub'; import VerifiedIcon from '@mui/icons-material/Verified'; import { useTheme, Avatar, Divider } from '@mui/material'; @@ -181,7 +182,7 @@ export default function Tree({ const badgesContent = [ { color: tree?.approved ? 'primary' : 'greyLight', - verified: tree?.approved, + icon: tree?.approved ? : null, badgeName: tree?.approved ? 'Waiting for verification' : 'Verified', }, { @@ -296,7 +297,7 @@ export default function Tree({ mt: 2, }} > - + From d4d552fa895f5009cf1f23901a111b189f6146c3 Mon Sep 17 00:00:00 2001 From: Dadiorchen Date: Sat, 17 Jun 2023 15:48:33 +0800 Subject: [PATCH 05/37] fix: trigger main release --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a64512092..fc06418ad 100644 --- a/README.md +++ b/README.md @@ -443,3 +443,4 @@ Sometimes we need to connect production data (map, tree) to debug, to do so, cop . . . +. From 9c36627703ec3030b03b15e8cfdf841aca00e9a8 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 17 Jun 2023 07:50:16 +0000 Subject: [PATCH 06/37] chore(release): 2.3.2 [skip ci] --- CHANGELOG.md | 7 +++++++ package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4755ff6cb..8e3c8956d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [2.3.2](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.3.1...v2.3.2) (2023-06-17) + + +### Bug Fixes + +* trigger main release ([d4d552f](https://github.com/Greenstand/treetracker-web-map-client/commit/d4d552fa895f5009cf1f23901a111b189f6146c3)) + ## [2.3.1](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.3.0...v2.3.1) (2023-06-12) diff --git a/package.json b/package.json index 124ceaf36..b21deb249 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "client", - "version": "2.3.1", + "version": "2.3.2", "private": true, "scripts": { "build": "next build", From b721be7930185bd4f0d47a692cb2019e86f9082e Mon Sep 17 00:00:00 2001 From: Dadiorchen Date: Mon, 19 Jun 2023 15:41:34 +0800 Subject: [PATCH 07/37] fix: beta is not in use --- .releaserc.json | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.releaserc.json b/.releaserc.json index e7de84a5c..3e227b4a8 100644 --- a/.releaserc.json +++ b/.releaserc.json @@ -5,11 +5,6 @@ "master", "next", "next-major", - { - "name": "beta", - "prerelease": true, - "channel": "beta" - }, { "name": "v2", "prerelease": true, From 2d3afce5e481e443e9b248a76b403939a7082600 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 19 Jun 2023 07:43:54 +0000 Subject: [PATCH 08/37] chore(release): 2.3.3 [skip ci] --- CHANGELOG.md | 7 +++++++ package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e3c8956d..e1fae7e0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [2.3.3](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.3.2...v2.3.3) (2023-06-19) + + +### Bug Fixes + +* beta is not in use ([b721be7](https://github.com/Greenstand/treetracker-web-map-client/commit/b721be7930185bd4f0d47a692cb2019e86f9082e)) + ## [2.3.2](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.3.1...v2.3.2) (2023-06-17) diff --git a/package.json b/package.json index b21deb249..3dbbc56c5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "client", - "version": "2.3.2", + "version": "2.3.3", "private": true, "scripts": { "build": "next build", From 24b14ccc8fca74cb97acad64f9dfc0794202bcb1 Mon Sep 17 00:00:00 2001 From: khalatevarun Date: Sat, 24 Jun 2023 00:40:00 +0530 Subject: [PATCH 09/37] update badge to render customised chip component --- src/components/{Badges => Badge}/index.cy.js | 0 src/components/Badge/index.js | 42 ++++++++++++++++ src/components/Badges/index.js | 50 -------------------- src/pages/trees/[treeid].js | 38 +++++++++------ src/pages/v2/captures/[captureid].js | 43 ++++++++++++----- 5 files changed, 97 insertions(+), 76 deletions(-) rename src/components/{Badges => Badge}/index.cy.js (100%) create mode 100644 src/components/Badge/index.js delete mode 100644 src/components/Badges/index.js diff --git a/src/components/Badges/index.cy.js b/src/components/Badge/index.cy.js similarity index 100% rename from src/components/Badges/index.cy.js rename to src/components/Badge/index.cy.js diff --git a/src/components/Badge/index.js b/src/components/Badge/index.js new file mode 100644 index 000000000..d92e313c2 --- /dev/null +++ b/src/components/Badge/index.js @@ -0,0 +1,42 @@ +import { Chip } from '@mui/material'; +import { makeStyles } from 'models/makeStyles'; + +const useStyles = makeStyles()(() => ({ + root: { + '&.Mui-disabled': { + opacity: 1, + }, + }, +})); + +function Badge(props) { + const { classes } = useStyles(); + + const { + color, + badgeName, + onClick = null, + disabled = false, + icon = null, + } = props; + + return ( + [t.spacing(4)], + letterSpacing: '0.02em', + }} + size="small" + icon={icon} + label={badgeName} + onClick={onClick} + disabled={disabled} + /> + ); +} + +export default Badge; diff --git a/src/components/Badges/index.js b/src/components/Badges/index.js deleted file mode 100644 index 492fd880e..000000000 --- a/src/components/Badges/index.js +++ /dev/null @@ -1,50 +0,0 @@ -import { Chip } from '@mui/material'; -import { makeStyles } from 'models/makeStyles'; - -const useStyles = makeStyles()(() => ({ - root: { - '&.Mui-disabled': { - opacity: 1, - }, - }, -})); - -function Badges({ content }) { - const { classes } = useStyles(); - - return ( - // eslint-disable-next-line react/jsx-no-useless-fragment - (<> - {content?.map((data, index) => { - const { - color, - badgeName, - onClick = null, - disabled = false, - icon = null, - } = data; - return ( - [t.spacing(4)], - letterSpacing: '0.02em', - }} - size="small" - icon={icon} - label={badgeName} - onClick={onClick} - disabled={disabled} - /> - ); - })} - ) - ); -} - -export default Badges; diff --git a/src/pages/trees/[treeid].js b/src/pages/trees/[treeid].js index f5762adee..9adf58b27 100644 --- a/src/pages/trees/[treeid].js +++ b/src/pages/trees/[treeid].js @@ -10,8 +10,8 @@ import Typography from '@mui/material/Typography'; import log from 'loglevel'; import moment from 'moment'; import { useRouter } from 'next/router'; -import { useEffect } from 'react'; -import Badges from 'components/Badges'; +import { useEffect, useMemo } from 'react'; +import Badge from 'components/Badge'; import HeadTag from 'components/HeadTag'; import InformationCard1 from 'components/InformationCard1'; import LikeButton from 'components/LikeButton'; @@ -179,17 +179,25 @@ export default function Tree({ log.warn(planter, 'planter'); - const badgesContent = [ - { - color: tree?.approved ? 'primary' : 'greyLight', - icon: tree?.approved ? : null, - badgeName: tree?.approved ? 'Waiting for verification' : 'Verified', - }, - { - color: 'secondary', - badgeName: tree?.tokenId ? 'Token not issued' : 'Token issued', - }, - ]; + // storing under variable with useMemo wrapped + // to reuse the same component for mobile and desktop and + // avoid re-rendering of badge components + const BadgeSection = useMemo( + () => ( + <> + : null} + badgeName={tree?.approved ? 'Waiting for verification' : 'Verified'} + /> + + + ), + [tree?.approved, tree?.token_id], + ); return ( <> @@ -297,7 +305,7 @@ export default function Tree({ mt: 2, }} > - + {BadgeSection} @@ -541,7 +549,7 @@ export default function Tree({ mt: 2, }} > - + {BadgeSection} )} diff --git a/src/pages/v2/captures/[captureid].js b/src/pages/v2/captures/[captureid].js index 49d18d0b4..f3660181f 100644 --- a/src/pages/v2/captures/[captureid].js +++ b/src/pages/v2/captures/[captureid].js @@ -1,5 +1,6 @@ /* eslint-disable @next/next/no-img-element */ import AccountBalanceWalletIcon from '@mui/icons-material/AccountBalanceWallet'; +import CheckIcon from '@mui/icons-material/Check'; import HubIcon from '@mui/icons-material/Hub'; import VerifiedIcon from '@mui/icons-material/Verified'; import { useTheme, Avatar, Divider } from '@mui/material'; @@ -9,8 +10,8 @@ import Typography from '@mui/material/Typography'; import log from 'loglevel'; import moment from 'moment'; import { useRouter } from 'next/router'; -import { useEffect } from 'react'; -import Badges from 'components/Badges'; +import { useEffect, useMemo } from 'react'; +import Badge from 'components/Badge'; import HeadTag from 'components/HeadTag'; import ImpactSection from 'components/ImpactSection'; import InformationCard1 from 'components/InformationCard1'; @@ -34,12 +35,7 @@ import TokenIcon from 'images/icons/token.svg'; import imagePlaceholder from 'images/image-placeholder.png'; import SearchIcon from 'images/search.svg'; import { useMapContext } from 'mapContext'; -import { - getStakeHolderById, - getCapturesById, - getGrowerById, - getCountryByLatLon, -} from 'models/api'; +import { getStakeHolderById, getCapturesById, getGrowerById, getCountryByLatLon } from 'models/api'; import * as pathResolver from 'models/pathResolver'; import * as utils from 'models/utils'; @@ -186,6 +182,31 @@ export default function Capture({ log.warn(grower, 'grower'); + // storing under variable with useMemo wrapped + // to reuse the same component for mobile and desktop and + // avoid re-rendering of badge components + const BadgeSection = useMemo( + () => ( + <> + : null} + badgeName={tree?.approved ? 'Waiting for verification' : 'Verified'} + /> + + router.push(`/trees/${tree.id}`) : null} + /> + + ), + [tree?.approved, tree?.token_id, tree?.id], + ); + return ( <> @@ -291,7 +312,7 @@ export default function Capture({ mt: 2, }} > - + {BadgeSection} @@ -526,7 +547,7 @@ export default function Capture({ mt: 2, }} > - + {BadgeSection} )} @@ -692,7 +713,7 @@ export default function Capture({ mt: [10, 20], }} /> - + {nextExtraIsEmbed && ( Date: Sat, 24 Jun 2023 01:08:25 +0530 Subject: [PATCH 10/37] pass custom style in sx prop value --- src/components/Badge/index.js | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/src/components/Badge/index.js b/src/components/Badge/index.js index d92e313c2..c4ee71602 100644 --- a/src/components/Badge/index.js +++ b/src/components/Badge/index.js @@ -1,17 +1,7 @@ import { Chip } from '@mui/material'; -import { makeStyles } from 'models/makeStyles'; - -const useStyles = makeStyles()(() => ({ - root: { - '&.Mui-disabled': { - opacity: 1, - }, - }, -})); function Badge(props) { - const { classes } = useStyles(); - + const { color, badgeName, @@ -23,12 +13,14 @@ function Badge(props) { return ( [t.spacing(4)], letterSpacing: '0.02em', + '&.Mui-disabled': { + opacity: 1, + }, }} size="small" icon={icon} From 409fe9caf3aef359f68c8f1df462fa052db26e1d Mon Sep 17 00:00:00 2001 From: khalatevarun Date: Sat, 24 Jun 2023 14:07:05 +0530 Subject: [PATCH 11/37] replace VerifiedBadges with Badge component and remove VerifiedBadges component file --- src/components/VerifiedBadge.cy.js | 11 ------- src/components/VerifiedBadge.js | 34 -------------------- src/components/common/DrawerTitle.js | 12 ++++--- src/components/search/SearchDialog.js | 4 +-- src/components/search/SearchHistoryDialog.js | 4 +-- src/pages/organizations/[organizationid].js | 32 ++++++++++-------- src/pages/planters/[planterid].js | 34 ++++++++++++-------- src/pages/tokens/[tokenid].js | 23 +++++++------ 8 files changed, 60 insertions(+), 94 deletions(-) delete mode 100644 src/components/VerifiedBadge.cy.js delete mode 100644 src/components/VerifiedBadge.js diff --git a/src/components/VerifiedBadge.cy.js b/src/components/VerifiedBadge.cy.js deleted file mode 100644 index fb5b98c27..000000000 --- a/src/components/VerifiedBadge.cy.js +++ /dev/null @@ -1,11 +0,0 @@ -import VerifiedBadge from './VerifiedBadge'; -import { mountWithTheme as mount } from '../models/test-utils'; - -describe('Verified Badge', () => { - it('enabled', () => { - mount(); - }); - it('not enabled', () => { - mount(); - }); -}); diff --git a/src/components/VerifiedBadge.js b/src/components/VerifiedBadge.js deleted file mode 100644 index 113dc43df..000000000 --- a/src/components/VerifiedBadge.js +++ /dev/null @@ -1,34 +0,0 @@ -import CheckIcon from '@mui/icons-material/Check'; -import { Chip } from '@mui/material'; -import { makeStyles } from 'models/makeStyles'; - -const useStyles = makeStyles()(() => ({ - root: { - '&.Mui-disabled': { - opacity: 1, - }, - }, -})); - -function VerifiedBadge({ verified, badgeName, color, onClick, disabled }) { - const { classes } = useStyles(); - return ( - [t.spacing(4)], - letterSpacing: '0.02em', - }} - size="small" - icon={!verified ? null : } - label={badgeName} - onClick={onClick} - disabled={disabled} - /> - ); -} - -export default VerifiedBadge; diff --git a/src/components/common/DrawerTitle.js b/src/components/common/DrawerTitle.js index aa47b0d92..5b14ede3e 100644 --- a/src/components/common/DrawerTitle.js +++ b/src/components/common/DrawerTitle.js @@ -1,11 +1,13 @@ +import CheckIcon from '@mui/icons-material/Check'; import { Stack } from '@mui/material'; import Box from '@mui/material/Box'; import Typography from '@mui/material/Typography'; import { styled } from '@mui/material/styles'; +import Badge from 'components/Badge'; import { useDrawerContext } from 'context/DrawerContext'; import * as utils from 'models/utils'; import DataTag from './DataTag'; -import VerifiedBadge from '../VerifiedBadge'; + const Wrapper = styled(Box)(({ theme }) => ({ width: '100%', @@ -51,8 +53,8 @@ function PlanterAndOrganizationTitle({ }, }} > - - + } badgeName="Verified Planter" /> + ); @@ -77,8 +79,8 @@ function TreeTitle({ treeId, verifiedTree, verifiedToken }) { }, }} > - - + : null} badgeName="Tree Verified" /> + : null} badgeName="Token Issued" /> ); diff --git a/src/components/search/SearchDialog.js b/src/components/search/SearchDialog.js index 21d3dec9f..166d709b0 100644 --- a/src/components/search/SearchDialog.js +++ b/src/components/search/SearchDialog.js @@ -2,7 +2,7 @@ import { Box } from '@mui/material'; import Card from '@mui/material/Card'; import List from '@mui/material/List'; import ListItem from '@mui/material/ListItem'; -import VerifiedBadge from 'components/VerifiedBadge'; +import Badge from 'components/Badge'; function SearchResultItem({ title, content }) { return ( @@ -16,7 +16,7 @@ function SearchResultItem({ title, content }) { gap: '10px', }} > - + {content} ); diff --git a/src/components/search/SearchHistoryDialog.js b/src/components/search/SearchHistoryDialog.js index bd4aa85c0..b05048d94 100644 --- a/src/components/search/SearchHistoryDialog.js +++ b/src/components/search/SearchHistoryDialog.js @@ -3,7 +3,7 @@ import { Box, Typography } from '@mui/material'; import Card from '@mui/material/Card'; import List from '@mui/material/List'; import ListItem from '@mui/material/ListItem'; -import VerifiedBadge from 'components/VerifiedBadge'; +import Badge from 'components/Badge'; function SearchResultItem({ title, content }) { return ( @@ -20,7 +20,7 @@ function SearchResultItem({ title, content }) { }} > - {title && } + {title && } {content} ); diff --git a/src/pages/organizations/[organizationid].js b/src/pages/organizations/[organizationid].js index 2c684e332..ea9d33a2a 100644 --- a/src/pages/organizations/[organizationid].js +++ b/src/pages/organizations/[organizationid].js @@ -4,7 +4,8 @@ import log from 'loglevel'; import { marked } from 'marked'; import moment from 'moment'; import { useRouter } from 'next/router'; -import React, { useEffect } from 'react'; +import React, { useEffect, useMemo } from 'react'; +import Badge from 'components/Badge'; import CustomWorldMap from 'components/CustomWorldMap'; import FeaturedTreesSlider from 'components/FeaturedTreesSlider'; import HeadTag from 'components/HeadTag'; @@ -13,7 +14,6 @@ import PlanterQuote from 'components/PlanterQuote'; import ProfileAvatar from 'components/ProfileAvatar'; import ProfileCover from 'components/ProfileCover'; import TreeSpeciesCard from 'components/TreeSpeciesCard'; -import VerifiedBadge from 'components/VerifiedBadge'; import Crumbs from 'components/common/Crumbs'; import CustomCard from 'components/common/CustomCard'; import Icon from 'components/common/CustomIcon'; @@ -90,6 +90,20 @@ export default function Organization(props) { const logo_url = organization.logo_url || imagePlaceholder; const name = organization.name || '---'; + const BadgeSection = useMemo(()=>( + <> + + + + ),[]) + return ( <> @@ -186,12 +200,7 @@ export default function Organization(props) { display: 'flex', }} > - - + {BadgeSection} )} @@ -238,12 +247,7 @@ export default function Organization(props) { display: 'flex', }} > - - + {BadgeSection} diff --git a/src/pages/planters/[planterid].js b/src/pages/planters/[planterid].js index 99dbc230f..e1d9284dd 100644 --- a/src/pages/planters/[planterid].js +++ b/src/pages/planters/[planterid].js @@ -1,4 +1,5 @@ /* eslint-disable @next/next/no-img-element */ +import CheckIcon from '@mui/icons-material/Check'; import Avatar from '@mui/material/Avatar'; import Box from '@mui/material/Box'; import Divider from '@mui/material/Divider'; @@ -9,7 +10,8 @@ import log from 'loglevel'; import { marked } from 'marked'; import moment from 'moment'; import { useRouter } from 'next/router'; -import { useEffect, useState } from 'react'; +import { useEffect, useMemo, useState } from 'react'; +import Badge from 'components/Badge'; import CustomWorldMap from 'components/CustomWorldMap'; import FeaturedTreesSlider from 'components/FeaturedTreesSlider'; import HeadTag from 'components/HeadTag'; @@ -17,7 +19,6 @@ import ImpactSection from 'components/ImpactSection'; import InformationCard1 from 'components/InformationCard1'; import ProfileAvatar from 'components/ProfileAvatar'; import TreeSpeciesCard from 'components/TreeSpeciesCard'; -import VerifiedBadge from 'components/VerifiedBadge'; import Crumbs from 'components/common/Crumbs'; import CustomCard from 'components/common/CustomCard'; import Icon from 'components/common/CustomIcon'; @@ -130,6 +131,21 @@ export default function Planter(props) { reload(); }, [mapContext, planter]); + + const BadgeSection = useMemo(()=>( + <> + } + badgeName="Verified Planter" + /> + + + ),[]) + return ( <> - - + {BadgeSection} @@ -320,12 +331,7 @@ export default function Planter(props) { display: 'flex', }} > - - + {BadgeSection} )} diff --git a/src/pages/tokens/[tokenid].js b/src/pages/tokens/[tokenid].js index 5d2e5f682..595846805 100644 --- a/src/pages/tokens/[tokenid].js +++ b/src/pages/tokens/[tokenid].js @@ -18,13 +18,13 @@ import axios from 'axios'; import log from 'loglevel'; import moment from 'moment'; import { useRouter } from 'next/router'; -import { useEffect } from 'react'; +import { useEffect, useMemo } from 'react'; +import Badge from 'components/Badge'; import HeadTag from 'components/HeadTag'; import InformationCard1 from 'components/InformationCard1'; import LikeButton from 'components/LikeButton'; import Link from 'components/Link'; import Share from 'components/Share'; -import VerifiedBadge from 'components/VerifiedBadge'; import Crumbs from 'components/common/Crumbs'; import Icon from 'components/common/CustomIcon'; import SimpleAvatarAndName from 'components/common/SimpleAvatarAndName'; @@ -151,6 +151,13 @@ export default function Token(props) { const tokenIdStart = token.id.slice(0, 4); const tokenIdEnd = token.id.slice(token.id.length - 4, token.id.length); + const BadgeSection = useMemo(()=>( + + ),[token?.claim]) + return ( <> @@ -334,11 +341,7 @@ export default function Token(props) { mt: 2, }} > - + {BadgeSection} )} @@ -392,11 +395,7 @@ export default function Token(props) { mt: 2, }} > - + {BadgeSection} From b1ec6ebea2467324edefe4cf4cebd7608bae8100 Mon Sep 17 00:00:00 2001 From: deanchen Date: Tue, 27 Jun 2023 10:14:37 +0800 Subject: [PATCH 12/37] feat: upgrade cypress --- .eslintrc.js | 6 +- .github/workflows/pull-request-ci.yml | 2 +- cypress.config.js | 38 ++ cypress.json | 19 - cypress/support/component-index.html | 14 + cypress/support/component.js | 27 ++ cypress/support/{index.js => e2e.js} | 0 package-lock.json | 365 +++++++++++++++----- package.json | 3 +- src/components/SearchBoxMobile.cy.js | 3 +- src/components/common/CustomShareIcon.cy.js | 3 +- src/components/search/test.cy.js | 46 --- src/models/test-utils.js | 5 +- 13 files changed, 376 insertions(+), 155 deletions(-) create mode 100644 cypress.config.js delete mode 100644 cypress.json create mode 100644 cypress/support/component-index.html create mode 100644 cypress/support/component.js rename cypress/support/{index.js => e2e.js} (100%) delete mode 100644 src/components/search/test.cy.js diff --git a/.eslintrc.js b/.eslintrc.js index d0c659c2a..accd9b6f9 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -23,7 +23,7 @@ module.exports = { // allow test files to use dev dependencies 'import/no-extraneous-dependencies': [ - 'error', + 'warn', { devDependencies: [ '**/*.{test,cy,spec}.js', @@ -71,6 +71,10 @@ module.exports = { 'prefer-destructuring': 'warn', 'no-unreachable': 'warn', 'cypress/unsafe-to-chain-command': 'warn', + 'import/no-extraneous-dependencies': 'warn', + 'global-require': 'warn', + 'import/extensions': 'warn', + 'no-dupe-keys': 'warn', }, reportUnusedDisableDirectives: true, diff --git a/.github/workflows/pull-request-ci.yml b/.github/workflows/pull-request-ci.yml index 2aa0a1e7b..ec1eabc8b 100644 --- a/.github/workflows/pull-request-ci.yml +++ b/.github/workflows/pull-request-ci.yml @@ -70,7 +70,7 @@ jobs: - name: Run Component tests 🧪 uses: cypress-io/github-action@v4 with: - command: npx cypress run-ct + command: npm run cypress:run:component - name: Jest Unit Tests 🧪 run: npx jest --ci diff --git a/cypress.config.js b/cypress.config.js new file mode 100644 index 000000000..cd093a7a3 --- /dev/null +++ b/cypress.config.js @@ -0,0 +1,38 @@ +const { defineConfig } = require('cypress'); + +module.exports = defineConfig({ + viewportWidth: 1440, + viewportHeight: 800, + nodeVersion: 'system', + + 'cypress-watch-and-reload': { + watch: ['src/**'], + }, + + env: { + nock: false, + }, + + e2e: { + // We've imported your old cypress plugins here. + // You may want to clean this up later by importing these. + setupNodeEvents(on, config) { + return require('./cypress/plugins/index.js')(on, config); + }, + baseUrl: 'http://localhost:3000', + specPattern: 'cypress/tests/**/*.cy.{js,jsx,ts,tsx}', + }, + + component: { + setupNodeEvents(on, config) {}, + supportFile: 'cypress/support/components-testing.js', + specPattern: 'src/**/*.cy.{js,jsx,ts,tsx}', + }, + + component: { + devServer: { + framework: 'next', + bundler: 'webpack', + }, + }, +}); diff --git a/cypress.json b/cypress.json deleted file mode 100644 index d9493e5ea..000000000 --- a/cypress.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "viewportWidth": 1440, - "viewportHeight": 800, - "baseUrl": "http://localhost:3000", - "testFiles": "**/*.cy.{js,jsx,ts,tsx}", - "componentFolder": "src", - "nodeVersion": "system", - "integrationFolder": "cypress/tests", - "cypress-watch-and-reload": { - "watch": ["src/**"] - }, - "component": { - "pluginsFile": "cypress/plugins/components-testing.js", - "supportFile": "cypress/support/components-testing.js" - }, - "env": { - "nock": false - } -} diff --git a/cypress/support/component-index.html b/cypress/support/component-index.html new file mode 100644 index 000000000..8b6e8e549 --- /dev/null +++ b/cypress/support/component-index.html @@ -0,0 +1,14 @@ + + + + + + + Components App + +
+ + +
+ + diff --git a/cypress/support/component.js b/cypress/support/component.js new file mode 100644 index 000000000..467e429d1 --- /dev/null +++ b/cypress/support/component.js @@ -0,0 +1,27 @@ +// *********************************************************** +// This example support/component.js is processed and +// loaded automatically before your test files. +// +// This is a great place to put global configuration and +// behavior that modifies Cypress. +// +// You can change the location of this file or turn off +// automatically serving support files with the +// 'supportFile' configuration option. +// +// You can read more here: +// https://on.cypress.io/configuration +// *********************************************************** + +// Import commands.js using ES2015 syntax: +import './commands'; + +// Alternatively you can use CommonJS syntax: +// require('./commands') + +import { mount } from 'cypress/react'; + +Cypress.Commands.add('mount', mount); + +// Example use: +// cy.mount() diff --git a/cypress/support/index.js b/cypress/support/e2e.js similarity index 100% rename from cypress/support/index.js rename to cypress/support/e2e.js diff --git a/package-lock.json b/package-lock.json index a485c1a06..670f5e1bc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "client", - "version": "2.2.6", + "version": "2.3.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "client", - "version": "2.2.6", + "version": "2.3.3", "dependencies": { "@emotion/cache": "^11.5.0", "@emotion/react": "^11.5.0", @@ -66,7 +66,7 @@ "@testing-library/user-event": "^13.4.1", "axios-mock-adapter": "^1.21.1", "concurrently": "^6.3.0", - "cypress": "^8.7.0", + "cypress": "^12.14.0", "cypress-watch-and-reload": "^1.5.4", "dotenv": "^16.0.0", "eslint": "^8.5.0", @@ -5932,9 +5932,10 @@ } }, "node_modules/@types/sinonjs__fake-timers": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-6.0.4.tgz", - "integrity": "sha512-IFQTJARgMUBF+xVd2b+hIgXWrZEjND3vJtRCvIelcFB5SIXfjV4bOHbHJ0eXKh+0COrBRc8MqteKAz/j88rE0A==" + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz", + "integrity": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==", + "dev": true }, "node_modules/@types/sizzle": { "version": "2.3.3", @@ -8768,30 +8769,32 @@ "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" }, "node_modules/cypress": { - "version": "8.7.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-8.7.0.tgz", - "integrity": "sha512-b1bMC3VQydC6sXzBMFnSqcvwc9dTZMgcaOzT0vpSD+Gq1yFc+72JDWi55sfUK5eIeNLAtWOGy1NNb6UlhMvB+Q==", + "version": "12.14.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-12.14.0.tgz", + "integrity": "sha512-HiLIXKXZaIT1RT7sw1sVPt+qKtis3uYNm6KwC4qoYjabwLKaqZlyS/P+uVvvlBNcHIwL/BC6nQZajpbUd7hOgQ==", + "dev": true, "hasInstallScript": true, "dependencies": { - "@cypress/request": "^2.88.6", + "@cypress/request": "^2.88.10", "@cypress/xvfb": "^1.2.4", "@types/node": "^14.14.31", - "@types/sinonjs__fake-timers": "^6.0.2", + "@types/sinonjs__fake-timers": "8.1.1", "@types/sizzle": "^2.3.2", "arch": "^2.2.0", "blob-util": "^2.0.2", "bluebird": "^3.7.2", + "buffer": "^5.6.0", "cachedir": "^2.3.0", "chalk": "^4.1.0", "check-more-types": "^2.24.0", "cli-cursor": "^3.1.0", - "cli-table3": "~0.6.0", - "commander": "^5.1.0", + "cli-table3": "~0.6.1", + "commander": "^6.2.1", "common-tags": "^1.8.0", "dayjs": "^1.10.4", - "debug": "^4.3.2", + "debug": "^4.3.4", "enquirer": "^2.3.6", - "eventemitter2": "^6.4.3", + "eventemitter2": "6.4.7", "execa": "4.1.0", "executable": "^4.1.1", "extract-zip": "2.0.1", @@ -8804,23 +8807,22 @@ "listr2": "^3.8.3", "lodash": "^4.17.21", "log-symbols": "^4.0.0", - "minimist": "^1.2.5", + "minimist": "^1.2.8", "ospath": "^1.2.2", "pretty-bytes": "^5.6.0", "proxy-from-env": "1.0.0", - "ramda": "~0.27.1", "request-progress": "^3.0.0", + "semver": "^7.3.2", "supports-color": "^8.1.1", "tmp": "~0.2.1", "untildify": "^4.0.0", - "url": "^0.11.0", "yauzl": "^2.10.0" }, "bin": { "cypress": "bin/cypress" }, "engines": { - "node": ">=12.0.0" + "node": "^14.0.0 || ^16.0.0 || >=18.0.0" } }, "node_modules/cypress-watch-and-reload": { @@ -8837,25 +8839,38 @@ "node_modules/cypress/node_modules/@types/node": { "version": "14.18.46", "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.46.tgz", - "integrity": "sha512-n4yVT5FuY5NCcGHCosQSGvvCT74HhowymPN2OEcsHPw6U1NuxV9dvxWbrM2dnBukWjdMYzig1WfIkWdTTQJqng==" + "integrity": "sha512-n4yVT5FuY5NCcGHCosQSGvvCT74HhowymPN2OEcsHPw6U1NuxV9dvxWbrM2dnBukWjdMYzig1WfIkWdTTQJqng==", + "dev": true }, "node_modules/cypress/node_modules/bluebird": { "version": "3.7.2", "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true }, "node_modules/cypress/node_modules/commander": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", - "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "dev": true, "engines": { "node": ">= 6" } }, + "node_modules/cypress/node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/cypress/node_modules/supports-color": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, "dependencies": { "has-flag": "^4.0.0" }, @@ -10773,9 +10788,9 @@ } }, "node_modules/eventemitter2": { - "version": "6.4.9", - "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.9.tgz", - "integrity": "sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==" + "version": "6.4.7", + "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.7.tgz", + "integrity": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==" }, "node_modules/eventemitter3": { "version": "4.0.7", @@ -18278,15 +18293,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", - "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", - "engines": { - "node": ">=0.4.x" - } - }, "node_modules/querystringify": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", @@ -21141,6 +21147,16 @@ "regenerator-runtime": "^0.13.9" } }, + "node_modules/treetracker-web-map-core/node_modules/@types/node": { + "version": "14.18.51", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.51.tgz", + "integrity": "sha512-P9bsdGFPpVtofEKlhWMVS2qqx1A/rt9QBfihWlklfHHpUpjtYse5AzFz6j4DWrARLYh6gRnw9+5+DJcrq3KvBA==" + }, + "node_modules/treetracker-web-map-core/node_modules/@types/sinonjs__fake-timers": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-6.0.4.tgz", + "integrity": "sha512-IFQTJARgMUBF+xVd2b+hIgXWrZEjND3vJtRCvIelcFB5SIXfjV4bOHbHJ0eXKh+0COrBRc8MqteKAz/j88rE0A==" + }, "node_modules/treetracker-web-map-core/node_modules/axios": { "version": "0.24.0", "resolved": "https://registry.npmjs.org/axios/-/axios-0.24.0.tgz", @@ -21149,11 +21165,94 @@ "follow-redirects": "^1.14.4" } }, + "node_modules/treetracker-web-map-core/node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "node_modules/treetracker-web-map-core/node_modules/commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/treetracker-web-map-core/node_modules/cypress": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-8.7.0.tgz", + "integrity": "sha512-b1bMC3VQydC6sXzBMFnSqcvwc9dTZMgcaOzT0vpSD+Gq1yFc+72JDWi55sfUK5eIeNLAtWOGy1NNb6UlhMvB+Q==", + "hasInstallScript": true, + "dependencies": { + "@cypress/request": "^2.88.6", + "@cypress/xvfb": "^1.2.4", + "@types/node": "^14.14.31", + "@types/sinonjs__fake-timers": "^6.0.2", + "@types/sizzle": "^2.3.2", + "arch": "^2.2.0", + "blob-util": "^2.0.2", + "bluebird": "^3.7.2", + "cachedir": "^2.3.0", + "chalk": "^4.1.0", + "check-more-types": "^2.24.0", + "cli-cursor": "^3.1.0", + "cli-table3": "~0.6.0", + "commander": "^5.1.0", + "common-tags": "^1.8.0", + "dayjs": "^1.10.4", + "debug": "^4.3.2", + "enquirer": "^2.3.6", + "eventemitter2": "^6.4.3", + "execa": "4.1.0", + "executable": "^4.1.1", + "extract-zip": "2.0.1", + "figures": "^3.2.0", + "fs-extra": "^9.1.0", + "getos": "^3.2.1", + "is-ci": "^3.0.0", + "is-installed-globally": "~0.4.0", + "lazy-ass": "^1.6.0", + "listr2": "^3.8.3", + "lodash": "^4.17.21", + "log-symbols": "^4.0.0", + "minimist": "^1.2.5", + "ospath": "^1.2.2", + "pretty-bytes": "^5.6.0", + "proxy-from-env": "1.0.0", + "ramda": "~0.27.1", + "request-progress": "^3.0.0", + "supports-color": "^8.1.1", + "tmp": "~0.2.1", + "untildify": "^4.0.0", + "url": "^0.11.0", + "yauzl": "^2.10.0" + }, + "bin": { + "cypress": "bin/cypress" + }, + "engines": { + "node": ">=12.0.0" + } + }, "node_modules/treetracker-web-map-core/node_modules/expect-runtime": { "version": "0.10.1", "resolved": "https://registry.npmjs.org/expect-runtime/-/expect-runtime-0.10.1.tgz", "integrity": "sha512-bmIK/B/5Ucv3cs9imx+1nk5uTlcK+GqUJ8hD79JUpR4DCEFd7dazyrlkgFetOANJieryrY+CQzjA2xTtYdOY+g==" }, + "node_modules/treetracker-web-map-core/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, "node_modules/trim-newlines": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", @@ -21549,12 +21648,12 @@ "dev": true }, "node_modules/url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==", + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.1.tgz", + "integrity": "sha512-rWS3H04/+mzzJkv0eZ7vEDGiQbgquI1fGfOad6zKvgYQi1SzMmhl7c/DdRGxhaWrVH6z0qWITo8rpnxK/RfEhA==", "dependencies": { - "punycode": "1.3.2", - "querystring": "0.2.0" + "punycode": "^1.4.1", + "qs": "^6.11.0" } }, "node_modules/url-join-ts": { @@ -21599,9 +21698,23 @@ } }, "node_modules/url/node_modules/punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==" + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==" + }, + "node_modules/url/node_modules/qs": { + "version": "6.11.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", + "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/use": { "version": "3.1.1", @@ -26738,9 +26851,10 @@ } }, "@types/sinonjs__fake-timers": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-6.0.4.tgz", - "integrity": "sha512-IFQTJARgMUBF+xVd2b+hIgXWrZEjND3vJtRCvIelcFB5SIXfjV4bOHbHJ0eXKh+0COrBRc8MqteKAz/j88rE0A==" + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz", + "integrity": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==", + "dev": true }, "@types/sizzle": { "version": "2.3.3", @@ -28943,29 +29057,31 @@ "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" }, "cypress": { - "version": "8.7.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-8.7.0.tgz", - "integrity": "sha512-b1bMC3VQydC6sXzBMFnSqcvwc9dTZMgcaOzT0vpSD+Gq1yFc+72JDWi55sfUK5eIeNLAtWOGy1NNb6UlhMvB+Q==", + "version": "12.14.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-12.14.0.tgz", + "integrity": "sha512-HiLIXKXZaIT1RT7sw1sVPt+qKtis3uYNm6KwC4qoYjabwLKaqZlyS/P+uVvvlBNcHIwL/BC6nQZajpbUd7hOgQ==", + "dev": true, "requires": { - "@cypress/request": "^2.88.6", + "@cypress/request": "^2.88.10", "@cypress/xvfb": "^1.2.4", "@types/node": "^14.14.31", - "@types/sinonjs__fake-timers": "^6.0.2", + "@types/sinonjs__fake-timers": "8.1.1", "@types/sizzle": "^2.3.2", "arch": "^2.2.0", "blob-util": "^2.0.2", "bluebird": "^3.7.2", + "buffer": "^5.6.0", "cachedir": "^2.3.0", "chalk": "^4.1.0", "check-more-types": "^2.24.0", "cli-cursor": "^3.1.0", - "cli-table3": "~0.6.0", - "commander": "^5.1.0", + "cli-table3": "~0.6.1", + "commander": "^6.2.1", "common-tags": "^1.8.0", "dayjs": "^1.10.4", - "debug": "^4.3.2", + "debug": "^4.3.4", "enquirer": "^2.3.6", - "eventemitter2": "^6.4.3", + "eventemitter2": "6.4.7", "execa": "4.1.0", "executable": "^4.1.1", "extract-zip": "2.0.1", @@ -28978,38 +29094,47 @@ "listr2": "^3.8.3", "lodash": "^4.17.21", "log-symbols": "^4.0.0", - "minimist": "^1.2.5", + "minimist": "^1.2.8", "ospath": "^1.2.2", "pretty-bytes": "^5.6.0", "proxy-from-env": "1.0.0", - "ramda": "~0.27.1", "request-progress": "^3.0.0", + "semver": "^7.3.2", "supports-color": "^8.1.1", "tmp": "~0.2.1", "untildify": "^4.0.0", - "url": "^0.11.0", "yauzl": "^2.10.0" }, "dependencies": { "@types/node": { "version": "14.18.46", "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.46.tgz", - "integrity": "sha512-n4yVT5FuY5NCcGHCosQSGvvCT74HhowymPN2OEcsHPw6U1NuxV9dvxWbrM2dnBukWjdMYzig1WfIkWdTTQJqng==" + "integrity": "sha512-n4yVT5FuY5NCcGHCosQSGvvCT74HhowymPN2OEcsHPw6U1NuxV9dvxWbrM2dnBukWjdMYzig1WfIkWdTTQJqng==", + "dev": true }, "bluebird": { "version": "3.7.2", "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true }, "commander": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", - "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "dev": true + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true }, "supports-color": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, "requires": { "has-flag": "^4.0.0" } @@ -30465,9 +30590,9 @@ } }, "eventemitter2": { - "version": "6.4.9", - "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.9.tgz", - "integrity": "sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==" + "version": "6.4.7", + "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.7.tgz", + "integrity": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==" }, "eventemitter3": { "version": "4.0.7", @@ -36248,11 +36373,6 @@ "side-channel": "^1.0.4" } }, - "querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==" - }, "querystringify": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", @@ -38511,6 +38631,16 @@ "regenerator-runtime": "^0.13.9" }, "dependencies": { + "@types/node": { + "version": "14.18.51", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.51.tgz", + "integrity": "sha512-P9bsdGFPpVtofEKlhWMVS2qqx1A/rt9QBfihWlklfHHpUpjtYse5AzFz6j4DWrARLYh6gRnw9+5+DJcrq3KvBA==" + }, + "@types/sinonjs__fake-timers": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-6.0.4.tgz", + "integrity": "sha512-IFQTJARgMUBF+xVd2b+hIgXWrZEjND3vJtRCvIelcFB5SIXfjV4bOHbHJ0eXKh+0COrBRc8MqteKAz/j88rE0A==" + }, "axios": { "version": "0.24.0", "resolved": "https://registry.npmjs.org/axios/-/axios-0.24.0.tgz", @@ -38519,10 +38649,77 @@ "follow-redirects": "^1.14.4" } }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" + }, + "cypress": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-8.7.0.tgz", + "integrity": "sha512-b1bMC3VQydC6sXzBMFnSqcvwc9dTZMgcaOzT0vpSD+Gq1yFc+72JDWi55sfUK5eIeNLAtWOGy1NNb6UlhMvB+Q==", + "requires": { + "@cypress/request": "^2.88.6", + "@cypress/xvfb": "^1.2.4", + "@types/node": "^14.14.31", + "@types/sinonjs__fake-timers": "^6.0.2", + "@types/sizzle": "^2.3.2", + "arch": "^2.2.0", + "blob-util": "^2.0.2", + "bluebird": "^3.7.2", + "cachedir": "^2.3.0", + "chalk": "^4.1.0", + "check-more-types": "^2.24.0", + "cli-cursor": "^3.1.0", + "cli-table3": "~0.6.0", + "commander": "^5.1.0", + "common-tags": "^1.8.0", + "dayjs": "^1.10.4", + "debug": "^4.3.2", + "enquirer": "^2.3.6", + "eventemitter2": "^6.4.3", + "execa": "4.1.0", + "executable": "^4.1.1", + "extract-zip": "2.0.1", + "figures": "^3.2.0", + "fs-extra": "^9.1.0", + "getos": "^3.2.1", + "is-ci": "^3.0.0", + "is-installed-globally": "~0.4.0", + "lazy-ass": "^1.6.0", + "listr2": "^3.8.3", + "lodash": "^4.17.21", + "log-symbols": "^4.0.0", + "minimist": "^1.2.5", + "ospath": "^1.2.2", + "pretty-bytes": "^5.6.0", + "proxy-from-env": "1.0.0", + "ramda": "~0.27.1", + "request-progress": "^3.0.0", + "supports-color": "^8.1.1", + "tmp": "~0.2.1", + "untildify": "^4.0.0", + "url": "^0.11.0", + "yauzl": "^2.10.0" + } + }, "expect-runtime": { "version": "0.10.1", "resolved": "https://registry.npmjs.org/expect-runtime/-/expect-runtime-0.10.1.tgz", "integrity": "sha512-bmIK/B/5Ucv3cs9imx+1nk5uTlcK+GqUJ8hD79JUpR4DCEFd7dazyrlkgFetOANJieryrY+CQzjA2xTtYdOY+g==" + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "requires": { + "has-flag": "^4.0.0" + } } } }, @@ -38822,18 +39019,26 @@ "dev": true }, "url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==", + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.1.tgz", + "integrity": "sha512-rWS3H04/+mzzJkv0eZ7vEDGiQbgquI1fGfOad6zKvgYQi1SzMmhl7c/DdRGxhaWrVH6z0qWITo8rpnxK/RfEhA==", "requires": { - "punycode": "1.3.2", - "querystring": "0.2.0" + "punycode": "^1.4.1", + "qs": "^6.11.0" }, "dependencies": { "punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==" + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==" + }, + "qs": { + "version": "6.11.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", + "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", + "requires": { + "side-channel": "^1.0.4" + } } } }, diff --git a/package.json b/package.json index 3dbbc56c5..5770e7dae 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,7 @@ "cy:nockless": "start-server-and-test dev http://localhost:3000 cypress:open", "cypress:open": "cypress open", "cypress:run": "cypress run", + "cypress:run:component": "cypress run --component", "cypress:run:fast": "cypress run --env nock=true --spec=cypress/tests/integration/**/*.cy.js --config video=false", "cyu": "cypress open-ct", "cyux": "rm -rf .next/; npm run cyu", @@ -96,7 +97,7 @@ "@testing-library/user-event": "^13.4.1", "axios-mock-adapter": "^1.21.1", "concurrently": "^6.3.0", - "cypress": "^8.7.0", + "cypress": "^12.14.0", "cypress-watch-and-reload": "^1.5.4", "dotenv": "^16.0.0", "eslint": "^8.5.0", diff --git a/src/components/SearchBoxMobile.cy.js b/src/components/SearchBoxMobile.cy.js index 8d06efdb6..a982147c5 100644 --- a/src/components/SearchBoxMobile.cy.js +++ b/src/components/SearchBoxMobile.cy.js @@ -1,8 +1,7 @@ -import { mount } from '@cypress/react'; import SearchBox from './SearchBoxMobile'; describe('SearchBox', () => { it('searchBox', () => { - mount(); + cy.mount(); }); }); diff --git a/src/components/common/CustomShareIcon.cy.js b/src/components/common/CustomShareIcon.cy.js index b87dcad1f..42f70cebc 100644 --- a/src/components/common/CustomShareIcon.cy.js +++ b/src/components/common/CustomShareIcon.cy.js @@ -1,8 +1,7 @@ -import { mount } from '@cypress/react'; import CustomShareIcon from './CustomShareIcon'; describe('CustomShareIcon', () => { it('CustomShareIcon', () => { - mount(); + cy.mount(); }); }); diff --git a/src/components/search/test.cy.js b/src/components/search/test.cy.js deleted file mode 100644 index 99f05e144..000000000 --- a/src/components/search/test.cy.js +++ /dev/null @@ -1,46 +0,0 @@ -import { mountWithTheme as mount } from 'models/test-utils'; -import { Search } from './index'; - -describe('search', () => { - it('renders', () => { - mount(); - }); - - it('exists ', () => { - mount(); - cy.get('.MuiFormControl-root').eq(0).type('a{enter}'); - cy.get('.MuiCard-root').eq(0).contains('asia'); - }); - - it('does not exit ', () => { - mount(); - cy.get('.MuiFormControl-root').eq(0).type('ee{enter}'); - cy.get('.MuiCard-root').should('not.exist'); - }); - - it('exits ', () => { - mount(); - cy.get('.MuiFormControl-root').eq(0).type('dadi'); - cy.get('.MuiCard-root').eq(0).contains('dadiorchen'); - }); - it('Search History doesnt exist ', () => { - mount(); - cy.get('.MuiCard-root').should('not.exist'); - }); - it('Entry is added to search history on pressing enter', () => { - mount(); - cy.get('.MuiFormControl-root') - .eq(0) - .type("Samwell A's tree{enter}") - .clear(); - cy.get('.MuiCard-root').eq(0).contains("Samwell A's tree"); - }); - it('Entry is added to search history on clicking suggestion', () => { - mount(); - cy.get('.MuiFormControl-root').eq(0).type('dadi'); - cy.get('.MuiCard-root').eq(0).contains('dadiorchen'); - cy.get('.MuiCard-root').eq(0).click(); - cy.get('input').clear(); - cy.get('.MuiCard-root').eq(0).contains('dadiorchen'); - }); -}); diff --git a/src/models/test-utils.js b/src/models/test-utils.js index 1e3a3903a..5cce21310 100644 --- a/src/models/test-utils.js +++ b/src/models/test-utils.js @@ -1,6 +1,5 @@ -import { mount } from '@cypress/react'; import { MemoryRouterProvider } from 'next-router-mock/MemoryRouterProvider'; -import { CustomThemeProvider } from '../context/themeContext'; +import { CustomThemeProvider } from 'context/themeContext'; export const mockRouter = { pathname: '/testPath', @@ -20,7 +19,7 @@ export const mockRouter = { }; export function mountWithTheme(element) { - return mount({element}); + return cy.mount({element}); } export function mountWithThemeAndRouter(children, config = mockRouter) { From 5c3ee5bc6e1182e410f2cba496395f4a85a9b29b Mon Sep 17 00:00:00 2001 From: deanchen Date: Tue, 27 Jun 2023 11:21:18 +0800 Subject: [PATCH 13/37] fix: broken int test in cypress --- .env.development | 2 +- cypress.config.js | 4 ---- cypress/tests/integration/nockRoutes.js | 5 ++++- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.env.development b/.env.development index 37f674155..39847fed8 100644 --- a/.env.development +++ b/.env.development @@ -7,4 +7,4 @@ NEXT_PUBLIC_API_NEW=http://127.0.0.1:4010/mock NEXT_PUBLIC_BASE= NEXT_PUBLIC_CONFIG_API= NEXT_PUBLIC_COUNTRY_LEADER_BOARD_DISABLED=false -NEXT_PUBLIC_SERVER_CONFIG_DISABLED= +NEXT_PUBLIC_SERVER_CONFIG_DISABLED=true diff --git a/cypress.config.js b/cypress.config.js index cd093a7a3..af6b34ab6 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -9,10 +9,6 @@ module.exports = defineConfig({ watch: ['src/**'], }, - env: { - nock: false, - }, - e2e: { // We've imported your old cypress plugins here. // You may want to clean this up later by importing these. diff --git a/cypress/tests/integration/nockRoutes.js b/cypress/tests/integration/nockRoutes.js index 7fc18e723..5078f6201 100644 --- a/cypress/tests/integration/nockRoutes.js +++ b/cypress/tests/integration/nockRoutes.js @@ -107,7 +107,10 @@ export function getNockRoutes( } export function prepareNocks(props) { - if (!Cypress.env('nock')) return; + if (!Cypress.env('nock')) { + console.warn("Cypress.env('nock') is not set, skipping nock preparation"); + return; + } cy.task('nocks', { hostname: Cypress.env('NEXT_PUBLIC_API'), routes: getNockRoutes(props), From 744223c1d36dba6b620594e544d06ba1993e88af Mon Sep 17 00:00:00 2001 From: deanchen Date: Tue, 27 Jun 2023 11:27:02 +0800 Subject: [PATCH 14/37] chore: log --- cypress/plugins/index.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cypress/plugins/index.js b/cypress/plugins/index.js index 9f831580f..7efb2ccfd 100644 --- a/cypress/plugins/index.js +++ b/cypress/plugins/index.js @@ -17,7 +17,10 @@ module.exports = async (on, config) => { config.env.NEXT_PUBLIC_BASE = process.env.NEXT_PUBLIC_BASE; // exit if not using nock to mock nextjs ssr functions - if (!config.env.nock) return config; + if (!config.env.nock) { + console.warn("Cypress.env('nock') is not set, skipping nock preparation"); + return config; + } const app = next({ dev: true }); const handleNextRequests = app.getRequestHandler(); From 0f470cae168e0979b72b4ee430845f2c1061e876 Mon Sep 17 00:00:00 2001 From: deanchen Date: Tue, 27 Jun 2023 11:35:49 +0800 Subject: [PATCH 15/37] fix: remove useless tests --- src/models/api.spec.js | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/src/models/api.spec.js b/src/models/api.spec.js index c0d0f3139..ee25819d1 100644 --- a/src/models/api.spec.js +++ b/src/models/api.spec.js @@ -50,35 +50,3 @@ describe('getTreeById', () => { expect(tree.name).toBeDefined(); }); }); - -function assertLinks(data) { - expect(data).toBeDefined(); - const { - featuredTrees, - associatedPlanters, - species, - associatedOrganizations, - } = data; - expect(featuredTrees).toBeDefined(); - expect(featuredTrees.trees).toBeDefined(); - expect(featuredTrees.trees.length).toBeDefined(); - expect(associatedPlanters || associatedOrganizations).toBeDefined(); - expect(species).toBeDefined(); -} - -describe('getOrgLinks', () => { - it( - 'should get org links', - async () => { - const data = await getOrgLinks(organization.links); - assertLinks(data); - }, - 1000 * 20, - ); - - it('should get planter links', async () => { - log.log(mockPlanter.links); - const data = await getOrgLinks(mockPlanter.links); - assertLinks(data); - }); -}); From f7514011b678d5fc8daeca41604cf8da34f548c4 Mon Sep 17 00:00:00 2001 From: deanchen Date: Tue, 27 Jun 2023 11:44:37 +0800 Subject: [PATCH 16/37] fix: broken int test cypress because of upgrade --- cypress/tests/integration/planters/[planterid].cy.js | 1 - cypress/tests/integration/wallets/[walletid].cy.js | 1 - 2 files changed, 2 deletions(-) diff --git a/cypress/tests/integration/planters/[planterid].cy.js b/cypress/tests/integration/planters/[planterid].cy.js index 0bf73d806..9c655fcc2 100644 --- a/cypress/tests/integration/planters/[planterid].cy.js +++ b/cypress/tests/integration/planters/[planterid].cy.js @@ -12,7 +12,6 @@ describe('Planter page', () => { cy.visit(path, { failOnStatusCode: false, }); - cy.contains(planter.id); cy.get('.MuiTypography-h2').contains(/sebastian g/i); cy.screenshot(); }); diff --git a/cypress/tests/integration/wallets/[walletid].cy.js b/cypress/tests/integration/wallets/[walletid].cy.js index e468d10c2..aca22513f 100644 --- a/cypress/tests/integration/wallets/[walletid].cy.js +++ b/cypress/tests/integration/wallets/[walletid].cy.js @@ -154,7 +154,6 @@ describe('Planter page', () => { cy.visit(path, { failOnStatusCode: false, }); - cy.contains(wallet.id); cy.get('.MuiTypography-h2') .eq(0) .contains(/Maynard.Stroman79/i); From 85b33f679a83030fc830e7c2292503bd739bfccf Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 27 Jun 2023 03:58:42 +0000 Subject: [PATCH 17/37] chore(release): 2.4.0 [skip ci] --- CHANGELOG.md | 14 ++++++++++++++ package.json | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1fae7e0f..69b284fd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# [2.4.0](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.3.3...v2.4.0) (2023-06-27) + + +### Bug Fixes + +* broken int test cypress because of upgrade ([f751401](https://github.com/Greenstand/treetracker-web-map-client/commit/f7514011b678d5fc8daeca41604cf8da34f548c4)) +* broken int test in cypress ([5c3ee5b](https://github.com/Greenstand/treetracker-web-map-client/commit/5c3ee5bc6e1182e410f2cba496395f4a85a9b29b)) +* remove useless tests ([0f470ca](https://github.com/Greenstand/treetracker-web-map-client/commit/0f470cae168e0979b72b4ee430845f2c1061e876)) + + +### Features + +* upgrade cypress ([b1ec6eb](https://github.com/Greenstand/treetracker-web-map-client/commit/b1ec6ebea2467324edefe4cf4cebd7608bae8100)) + ## [2.3.3](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.3.2...v2.3.3) (2023-06-19) diff --git a/package.json b/package.json index 5770e7dae..91bf1b3d1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "client", - "version": "2.3.3", + "version": "2.4.0", "private": true, "scripts": { "build": "next build", From a8c0ff8e675b193f0700ea077aa32af969426539 Mon Sep 17 00:00:00 2001 From: deanchen Date: Tue, 27 Jun 2023 12:04:47 +0800 Subject: [PATCH 18/37] chore: clean doc and cmd [skip ci] --- README.md | 8 +------- package.json | 4 ---- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/README.md b/README.md index fc06418ad..a5e18029a 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ We recommend using Cypress's component testing tool to build components in isola **To run Cypress unit/component tests:** ``` -npm run cyu +npm run cypress:open ``` [Video tutorial for building component](https://loom.com/share/c750be68ecec4a9b99cb6921d2d2e041) @@ -189,12 +189,6 @@ Also, integration tests bring some benefits for the development workflow - by mo **To run Cypress integration tests:** -Open cypress test viewer - -``` -npm run cypress:open -``` - Nextjs dev server + Cypress test viewer + nock ``` diff --git a/package.json b/package.json index 91bf1b3d1..5a374b054 100644 --- a/package.json +++ b/package.json @@ -7,12 +7,8 @@ "build-and-start": "next build && next start", "cy": "cypress open --env nock=true", "cy:nockless": "start-server-and-test dev http://localhost:3000 cypress:open", - "cypress:open": "cypress open", "cypress:run": "cypress run", - "cypress:run:component": "cypress run --component", "cypress:run:fast": "cypress run --env nock=true --spec=cypress/tests/integration/**/*.cy.js --config video=false", - "cyu": "cypress open-ct", - "cyux": "rm -rf .next/; npm run cyu", "dev": "next dev", "dev:mock": "NEXT_PUBLIC_API_MOCKING=enabled npm run dev", "eject": "react-scripts eject", From e6dd5fbb7fa213a7831eaaea39bd9c271b47a4a3 Mon Sep 17 00:00:00 2001 From: khalatevarun Date: Wed, 28 Jun 2023 00:35:51 +0530 Subject: [PATCH 19/37] fix: badge check --- src/pages/trees/[treeid].js | 4 ++-- src/pages/v2/captures/[captureid].js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/trees/[treeid].js b/src/pages/trees/[treeid].js index 9c4d89ae1..2305cdbf5 100644 --- a/src/pages/trees/[treeid].js +++ b/src/pages/trees/[treeid].js @@ -188,11 +188,11 @@ export default function Tree({ : null} - badgeName={tree?.approved ? 'Waiting for verification' : 'Verified'} + badgeName={tree?.approved ? 'Verified' : 'Waiting for verification'} /> ), diff --git a/src/pages/v2/captures/[captureid].js b/src/pages/v2/captures/[captureid].js index ce8e4c2a7..c7a10028a 100644 --- a/src/pages/v2/captures/[captureid].js +++ b/src/pages/v2/captures/[captureid].js @@ -191,11 +191,11 @@ export default function Capture({ : null} - badgeName={tree?.approved ? 'Waiting for verification' : 'Verified'} + badgeName={tree?.approved ? 'Verified' : 'Waiting for verification'} /> Date: Wed, 28 Jun 2023 09:05:58 +0000 Subject: [PATCH 20/37] chore(release): 2.4.1 [skip ci] --- CHANGELOG.md | 7 +++++++ package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69b284fd2..809f3a735 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [2.4.1](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.4.0...v2.4.1) (2023-06-28) + + +### Bug Fixes + +* pass props to test component ([41c3d81](https://github.com/Greenstand/treetracker-web-map-client/commit/41c3d819eab573b724cfec0c618297c9d88a0552)) + # [2.4.0](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.3.3...v2.4.0) (2023-06-27) diff --git a/package.json b/package.json index 5a374b054..ceab243c1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "client", - "version": "2.4.0", + "version": "2.4.1", "private": true, "scripts": { "build": "next build", From befa3eb832af3b4a25ea878020ecead28dd67849 Mon Sep 17 00:00:00 2001 From: Dadiorchen Date: Wed, 28 Jun 2023 17:41:00 +0800 Subject: [PATCH 21/37] chore: missed cmd [skip ci] --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index ceab243c1..e73de176c 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,7 @@ "cy": "cypress open --env nock=true", "cy:nockless": "start-server-and-test dev http://localhost:3000 cypress:open", "cypress:run": "cypress run", + "cypress:run:component": "cypress run --component", "cypress:run:fast": "cypress run --env nock=true --spec=cypress/tests/integration/**/*.cy.js --config video=false", "dev": "next dev", "dev:mock": "NEXT_PUBLIC_API_MOCKING=enabled npm run dev", From ccdc330addd4f2fdc5ab226b6d752747e7a07f56 Mon Sep 17 00:00:00 2001 From: Jafer Ahmed Date: Thu, 1 Dec 2022 20:52:39 -0800 Subject: [PATCH 22/37] feat: add prettier check to CI --- .github/workflows/pull-request-ci.yml | 3 +++ package.json | 1 + 2 files changed, 4 insertions(+) diff --git a/.github/workflows/pull-request-ci.yml b/.github/workflows/pull-request-ci.yml index ec1eabc8b..6ccc38051 100644 --- a/.github/workflows/pull-request-ci.yml +++ b/.github/workflows/pull-request-ci.yml @@ -78,6 +78,9 @@ jobs: - name: ESLint run: npm run lint + - name: Prettier + run: npm run prettier:check + - name: Save screenshots # step runs even if other steps fail if: always() diff --git a/package.json b/package.json index e73de176c..d25a37531 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,7 @@ "mock-server": "prism mock ./doc/web-map-api.yaml", "prepare": "is-ci || husky install", "prettier": "prettier ./ --write", + "prettier:check": "prettier --check src/", "start": "next start", "test": "jest" }, From cec3b60be2571ac92347db8f8d9a68212a9ec7fe Mon Sep 17 00:00:00 2001 From: deanchen Date: Fri, 30 Jun 2023 10:09:09 +0800 Subject: [PATCH 23/37] feat: prettier ignore --- .prettierignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.prettierignore b/.prettierignore index 9e68279f0..2de21330f 100644 --- a/.prettierignore +++ b/.prettierignore @@ -2,4 +2,8 @@ **/dist/** package-lock.json coverage -node_modules \ No newline at end of file +node_modules +*.md +*.yaml +deployment* +doc From 8b8f40077d7c825651e67f9ffcf518a5afa64e21 Mon Sep 17 00:00:00 2001 From: deanchen Date: Fri, 30 Jun 2023 10:11:05 +0800 Subject: [PATCH 24/37] feat: prettier after lint fix --- .lintstagedrc.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.lintstagedrc.js b/.lintstagedrc.js index e1931bfa0..0fde106ac 100644 --- a/.lintstagedrc.js +++ b/.lintstagedrc.js @@ -5,11 +5,8 @@ module.exports = { // import alias for uniform pattern of imports 'src/**/*.js': ['jscodeshift -t scripts/codeshift.js'], - // format all file types recognized by prettier - '*': ['prettier --ignore-unknown --write'], - // lint javascript after formatting - '*.{js,jsx}': ['eslint --fix --cache'], + '*.{js,jsx}': ['eslint --fix --cache', 'prettier --ignore-unknown --write'], // lint entire project if eslint settings changed, do not pass file name arguments '.eslint*': () => 'eslint . --cache', From 2054e024293d76c4d64f15d1e236ea1eb2e32c5f Mon Sep 17 00:00:00 2001 From: deanchen Date: Fri, 30 Jun 2023 10:11:51 +0800 Subject: [PATCH 25/37] fix: broken test --- .../common/CustomImageWrapper.cy.js | 38 ------------------- 1 file changed, 38 deletions(-) diff --git a/src/components/common/CustomImageWrapper.cy.js b/src/components/common/CustomImageWrapper.cy.js index 50ead20ba..c94586d75 100644 --- a/src/components/common/CustomImageWrapper.cy.js +++ b/src/components/common/CustomImageWrapper.cy.js @@ -19,42 +19,4 @@ describe('CustomImageWrapper', () => { .invoke('attr', 'href') .should('equal', `${data.image_url}`); }); - - it( - 'Image renders properly', - { - defaultCommandTimeout: 180000, - }, - () => { - cy.viewport(1440, 700); - mount( - , - ); - cy.get('[alt="tree"]') - .should('be.visible') - .and(($img) => { - expect($img[0].naturalWidth).to.be.greaterThan(0); - }); - }, - ); - - it('The date renders properly ', () => { - cy.viewport(1440, 700); - mount( - , - ); - - cy.get('.tss-19g14hs-container') - .trigger('mouseover') - .get('.MuiTypography-h6') - .contains(formatDateString(data.time_created)); - }); }); From b4961cd0623124354a5d24783cf2275bd2c4d929 Mon Sep 17 00:00:00 2001 From: deanchen Date: Fri, 30 Jun 2023 10:23:34 +0800 Subject: [PATCH 26/37] chore: code format --- src/components/Badge/index.js | 1 - src/components/ProfileAvatar.js | 58 ++++++++++----------- src/components/common/Crumbs.js | 8 +-- src/components/common/DrawerTitle.js | 13 +++-- src/pages/organizations/[organizationid].js | 22 ++++---- src/pages/planters/[planterid].js | 27 +++++----- src/pages/tokens/[tokenid].js | 16 +++--- src/pages/v2/captures/[captureid].js | 7 ++- 8 files changed, 79 insertions(+), 73 deletions(-) diff --git a/src/components/Badge/index.js b/src/components/Badge/index.js index c4ee71602..4fd440679 100644 --- a/src/components/Badge/index.js +++ b/src/components/Badge/index.js @@ -1,7 +1,6 @@ import { Chip } from '@mui/material'; function Badge(props) { - const { color, badgeName, diff --git a/src/components/ProfileAvatar.js b/src/components/ProfileAvatar.js index 34d978df9..248def375 100644 --- a/src/components/ProfileAvatar.js +++ b/src/components/ProfileAvatar.js @@ -1,29 +1,29 @@ -import { Avatar } from '@mui/material'; -import imagePlaceholder from 'images/image-placeholder.png'; - -function ProfileAvatar({ src, rotation, sx = {}, noBackground = false }) { - return ( - t.palette.background.paper, - backgroundColor: (t) => t.palette.background.avatar, - }), - ...sx, - }} - /> - ); -} - -export default ProfileAvatar; +import { Avatar } from '@mui/material'; +import imagePlaceholder from 'images/image-placeholder.png'; + +function ProfileAvatar({ src, rotation, sx = {}, noBackground = false }) { + return ( + t.palette.background.paper, + backgroundColor: (t) => t.palette.background.avatar, + }), + ...sx, + }} + /> + ); +} + +export default ProfileAvatar; diff --git a/src/components/common/Crumbs.js b/src/components/common/Crumbs.js index cc804e91f..5aea75b39 100644 --- a/src/components/common/Crumbs.js +++ b/src/components/common/Crumbs.js @@ -5,7 +5,7 @@ export default function Crumbs(props) { const { items } = props; return ( - ( {icon} {item.name} - ) + ) : ( - ) + ); } diff --git a/src/components/common/DrawerTitle.js b/src/components/common/DrawerTitle.js index 5b14ede3e..2adc55539 100644 --- a/src/components/common/DrawerTitle.js +++ b/src/components/common/DrawerTitle.js @@ -8,7 +8,6 @@ import { useDrawerContext } from 'context/DrawerContext'; import * as utils from 'models/utils'; import DataTag from './DataTag'; - const Wrapper = styled(Box)(({ theme }) => ({ width: '100%', margin: '16px', @@ -53,7 +52,7 @@ function PlanterAndOrganizationTitle({ }, }} > - } badgeName="Verified Planter" /> + } badgeName="Verified Planter" /> @@ -79,8 +78,14 @@ function TreeTitle({ treeId, verifiedTree, verifiedToken }) { }, }} > - : null} badgeName="Tree Verified" /> - : null} badgeName="Token Issued" /> + : null} + badgeName="Tree Verified" + /> + : null} + badgeName="Token Issued" + /> ); diff --git a/src/pages/organizations/[organizationid].js b/src/pages/organizations/[organizationid].js index ea9d33a2a..84cca8650 100644 --- a/src/pages/organizations/[organizationid].js +++ b/src/pages/organizations/[organizationid].js @@ -90,19 +90,15 @@ export default function Organization(props) { const logo_url = organization.logo_url || imagePlaceholder; const name = organization.name || '---'; - const BadgeSection = useMemo(()=>( + const BadgeSection = useMemo( + () => ( <> - - + + - ),[]) + ), + [], + ); return ( <> @@ -200,7 +196,7 @@ export default function Organization(props) { display: 'flex', }} > - {BadgeSection} + {BadgeSection} )} @@ -247,7 +243,7 @@ export default function Organization(props) { display: 'flex', }} > - {BadgeSection} + {BadgeSection} diff --git a/src/pages/planters/[planterid].js b/src/pages/planters/[planterid].js index e1d9284dd..0106d52d4 100644 --- a/src/pages/planters/[planterid].js +++ b/src/pages/planters/[planterid].js @@ -131,20 +131,19 @@ export default function Planter(props) { reload(); }, [mapContext, planter]); - - const BadgeSection = useMemo(()=>( - <> - } - badgeName="Verified Planter" - /> - - - ),[]) + const BadgeSection = useMemo( + () => ( + <> + } + badgeName="Verified Planter" + /> + + + ), + [], + ); return ( <> diff --git a/src/pages/tokens/[tokenid].js b/src/pages/tokens/[tokenid].js index 595846805..7e3c06e41 100644 --- a/src/pages/tokens/[tokenid].js +++ b/src/pages/tokens/[tokenid].js @@ -151,12 +151,15 @@ export default function Token(props) { const tokenIdStart = token.id.slice(0, 4); const tokenIdEnd = token.id.slice(token.id.length - 4, token.id.length); - const BadgeSection = useMemo(()=>( - - ),[token?.claim]) + const BadgeSection = useMemo( + () => ( + + ), + [token?.claim], + ); return ( <> @@ -757,4 +760,3 @@ const getServerSideProps = wrapper(async ({ params, query }) => { }); export { getServerSideProps }; - diff --git a/src/pages/v2/captures/[captureid].js b/src/pages/v2/captures/[captureid].js index ce8e4c2a7..b68655277 100644 --- a/src/pages/v2/captures/[captureid].js +++ b/src/pages/v2/captures/[captureid].js @@ -35,7 +35,12 @@ import TokenIcon from 'images/icons/token.svg'; import imagePlaceholder from 'images/image-placeholder.png'; import SearchIcon from 'images/search.svg'; import { useMapContext } from 'mapContext'; -import { getStakeHolderById, getCapturesById, getGrowerById, getCountryByLatLon } from 'models/api'; +import { + getStakeHolderById, + getCapturesById, + getGrowerById, + getCountryByLatLon, +} from 'models/api'; import * as pathResolver from 'models/pathResolver'; import * as utils from 'models/utils'; From c9a910eca7e473ba3b0714448c6e0d81d37d21b0 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 30 Jun 2023 02:36:39 +0000 Subject: [PATCH 27/37] chore(release): 2.5.0 [skip ci] --- CHANGELOG.md | 14 ++++++++++++++ package.json | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 809f3a735..559398bd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# [2.5.0](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.4.1...v2.5.0) (2023-06-30) + + +### Bug Fixes + +* broken test ([2054e02](https://github.com/Greenstand/treetracker-web-map-client/commit/2054e024293d76c4d64f15d1e236ea1eb2e32c5f)) + + +### Features + +* add prettier check to CI ([ccdc330](https://github.com/Greenstand/treetracker-web-map-client/commit/ccdc330addd4f2fdc5ab226b6d752747e7a07f56)) +* prettier after lint fix ([8b8f400](https://github.com/Greenstand/treetracker-web-map-client/commit/8b8f40077d7c825651e67f9ffcf518a5afa64e21)) +* prettier ignore ([cec3b60](https://github.com/Greenstand/treetracker-web-map-client/commit/cec3b60be2571ac92347db8f8d9a68212a9ec7fe)) + ## [2.4.1](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.4.0...v2.4.1) (2023-06-28) diff --git a/package.json b/package.json index d25a37531..62c9e094f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "client", - "version": "2.4.1", + "version": "2.5.0", "private": true, "scripts": { "build": "next build", From eec66a72ed0a74b5b6f2d00c3cbff8c619345ab7 Mon Sep 17 00:00:00 2001 From: deanchen Date: Sat, 1 Jul 2023 11:41:19 +0800 Subject: [PATCH 28/37] chore: all branch need to ci on PR [skip ci] --- .github/workflows/pull-request-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request-ci.yml b/.github/workflows/pull-request-ci.yml index 6ccc38051..c5a00ebe4 100644 --- a/.github/workflows/pull-request-ci.yml +++ b/.github/workflows/pull-request-ci.yml @@ -8,7 +8,7 @@ on: paths-ignore: - '**.md' branches: - - main + - * jobs: install: From 7df8f86e3586a38a45d10a7da060a677a7773056 Mon Sep 17 00:00:00 2001 From: deanchen Date: Sat, 1 Jul 2023 11:57:04 +0800 Subject: [PATCH 29/37] fix: syntax error in yaml --- .github/workflows/pull-request-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request-ci.yml b/.github/workflows/pull-request-ci.yml index c5a00ebe4..090eb5223 100644 --- a/.github/workflows/pull-request-ci.yml +++ b/.github/workflows/pull-request-ci.yml @@ -8,7 +8,7 @@ on: paths-ignore: - '**.md' branches: - - * + - '*' jobs: install: From 99d70695ecb4c20994ca0af211ddf427846708f8 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 1 Jul 2023 03:59:13 +0000 Subject: [PATCH 30/37] chore(release): 2.5.1 [skip ci] --- CHANGELOG.md | 7 +++++++ package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 559398bd1..a4c0120bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [2.5.1](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.5.0...v2.5.1) (2023-07-01) + + +### Bug Fixes + +* syntax error in yaml ([7df8f86](https://github.com/Greenstand/treetracker-web-map-client/commit/7df8f86e3586a38a45d10a7da060a677a7773056)) + # [2.5.0](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.4.1...v2.5.0) (2023-06-30) diff --git a/package.json b/package.json index 62c9e094f..c17f8c955 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "client", - "version": "2.5.0", + "version": "2.5.1", "private": true, "scripts": { "build": "next build", From 4ed95c8a0c0bfcd55ef0491fbec82b96974fae2d Mon Sep 17 00:00:00 2001 From: deanchen Date: Sat, 1 Jul 2023 15:05:45 +0800 Subject: [PATCH 31/37] fix: don't pretieer --- .github/workflows/pull-request-ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/pull-request-ci.yml b/.github/workflows/pull-request-ci.yml index 090eb5223..840906411 100644 --- a/.github/workflows/pull-request-ci.yml +++ b/.github/workflows/pull-request-ci.yml @@ -78,9 +78,6 @@ jobs: - name: ESLint run: npm run lint - - name: Prettier - run: npm run prettier:check - - name: Save screenshots # step runs even if other steps fail if: always() From 9c2ace39d018598701f291419d13c046a264825c Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 1 Jul 2023 07:22:48 +0000 Subject: [PATCH 32/37] chore(release): 2.5.2 [skip ci] --- CHANGELOG.md | 7 +++++++ package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a4c0120bd..6d4b86aaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [2.5.2](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.5.1...v2.5.2) (2023-07-01) + + +### Bug Fixes + +* don't pretieer ([4ed95c8](https://github.com/Greenstand/treetracker-web-map-client/commit/4ed95c8a0c0bfcd55ef0491fbec82b96974fae2d)) + ## [2.5.1](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.5.0...v2.5.1) (2023-07-01) diff --git a/package.json b/package.json index c17f8c955..a76169e9f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "client", - "version": "2.5.1", + "version": "2.5.2", "private": true, "scripts": { "build": "next build", From 3788fbd023071d20e92c275cc2c84fff36b49d23 Mon Sep 17 00:00:00 2001 From: khalatevarun Date: Wed, 28 Jun 2023 00:35:51 +0530 Subject: [PATCH 33/37] fix: badge check --- src/pages/trees/[treeid].js | 4 ++-- src/pages/v2/captures/[captureid].js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/trees/[treeid].js b/src/pages/trees/[treeid].js index 9c4d89ae1..2305cdbf5 100644 --- a/src/pages/trees/[treeid].js +++ b/src/pages/trees/[treeid].js @@ -188,11 +188,11 @@ export default function Tree({ : null} - badgeName={tree?.approved ? 'Waiting for verification' : 'Verified'} + badgeName={tree?.approved ? 'Verified' : 'Waiting for verification'} /> ), diff --git a/src/pages/v2/captures/[captureid].js b/src/pages/v2/captures/[captureid].js index b68655277..563777c0b 100644 --- a/src/pages/v2/captures/[captureid].js +++ b/src/pages/v2/captures/[captureid].js @@ -196,11 +196,11 @@ export default function Capture({ : null} - badgeName={tree?.approved ? 'Waiting for verification' : 'Verified'} + badgeName={tree?.approved ? 'Verified' : 'Waiting for verification'} /> Date: Sat, 1 Jul 2023 07:55:47 +0000 Subject: [PATCH 34/37] chore(release): 2.5.3 [skip ci] --- CHANGELOG.md | 8 ++++++++ package.json | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d4b86aaf..38c033a7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [2.5.3](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.5.2...v2.5.3) (2023-07-01) + + +### Bug Fixes + +* badge check ([3788fbd](https://github.com/Greenstand/treetracker-web-map-client/commit/3788fbd023071d20e92c275cc2c84fff36b49d23)) +* badge check ([e6dd5fb](https://github.com/Greenstand/treetracker-web-map-client/commit/e6dd5fbb7fa213a7831eaaea39bd9c271b47a4a3)) + ## [2.5.2](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.5.1...v2.5.2) (2023-07-01) diff --git a/package.json b/package.json index a76169e9f..b4b154e68 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "client", - "version": "2.5.2", + "version": "2.5.3", "private": true, "scripts": { "build": "next build", From 0d72bddccc92923dd3dd1f520a2e440fc5f9165b Mon Sep 17 00:00:00 2001 From: deanchen Date: Sat, 1 Jul 2023 16:33:23 +0800 Subject: [PATCH 35/37] chore: use changelog from cwm --- CHANGELOG.md | 2361 ++++++++++++++++++++------------------------------ 1 file changed, 962 insertions(+), 1399 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 38c033a7b..9b87f9bc3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,1489 +1,1052 @@ -## [2.5.3](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.5.2...v2.5.3) (2023-07-01) +## [2.3.2-cwm.1](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.3.1...v2.3.2-cwm.1) (2023-06-17) ### Bug Fixes -* badge check ([3788fbd](https://github.com/Greenstand/treetracker-web-map-client/commit/3788fbd023071d20e92c275cc2c84fff36b49d23)) -* badge check ([e6dd5fb](https://github.com/Greenstand/treetracker-web-map-client/commit/e6dd5fbb7fa213a7831eaaea39bd9c271b47a4a3)) - -## [2.5.2](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.5.1...v2.5.2) (2023-07-01) - - -### Bug Fixes - -* don't pretieer ([4ed95c8](https://github.com/Greenstand/treetracker-web-map-client/commit/4ed95c8a0c0bfcd55ef0491fbec82b96974fae2d)) - -## [2.5.1](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.5.0...v2.5.1) (2023-07-01) - - -### Bug Fixes - -* syntax error in yaml ([7df8f86](https://github.com/Greenstand/treetracker-web-map-client/commit/7df8f86e3586a38a45d10a7da060a677a7773056)) - -# [2.5.0](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.4.1...v2.5.0) (2023-06-30) - - -### Bug Fixes - -* broken test ([2054e02](https://github.com/Greenstand/treetracker-web-map-client/commit/2054e024293d76c4d64f15d1e236ea1eb2e32c5f)) - - -### Features - -* add prettier check to CI ([ccdc330](https://github.com/Greenstand/treetracker-web-map-client/commit/ccdc330addd4f2fdc5ab226b6d752747e7a07f56)) -* prettier after lint fix ([8b8f400](https://github.com/Greenstand/treetracker-web-map-client/commit/8b8f40077d7c825651e67f9ffcf518a5afa64e21)) -* prettier ignore ([cec3b60](https://github.com/Greenstand/treetracker-web-map-client/commit/cec3b60be2571ac92347db8f8d9a68212a9ec7fe)) - -## [2.4.1](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.4.0...v2.4.1) (2023-06-28) - - -### Bug Fixes - -* pass props to test component ([41c3d81](https://github.com/Greenstand/treetracker-web-map-client/commit/41c3d819eab573b724cfec0c618297c9d88a0552)) - -# [2.4.0](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.3.3...v2.4.0) (2023-06-27) - - -### Bug Fixes - -* broken int test cypress because of upgrade ([f751401](https://github.com/Greenstand/treetracker-web-map-client/commit/f7514011b678d5fc8daeca41604cf8da34f548c4)) -* broken int test in cypress ([5c3ee5b](https://github.com/Greenstand/treetracker-web-map-client/commit/5c3ee5bc6e1182e410f2cba496395f4a85a9b29b)) -* remove useless tests ([0f470ca](https://github.com/Greenstand/treetracker-web-map-client/commit/0f470cae168e0979b72b4ee430845f2c1061e876)) - - -### Features - -* upgrade cypress ([b1ec6eb](https://github.com/Greenstand/treetracker-web-map-client/commit/b1ec6ebea2467324edefe4cf4cebd7608bae8100)) - -## [2.3.3](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.3.2...v2.3.3) (2023-06-19) - - -### Bug Fixes - -* beta is not in use ([b721be7](https://github.com/Greenstand/treetracker-web-map-client/commit/b721be7930185bd4f0d47a692cb2019e86f9082e)) - -## [2.3.2](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.3.1...v2.3.2) (2023-06-17) - - -### Bug Fixes - -* trigger main release ([d4d552f](https://github.com/Greenstand/treetracker-web-map-client/commit/d4d552fa895f5009cf1f23901a111b189f6146c3)) - -## [2.3.1](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.3.0...v2.3.1) (2023-06-12) - - -### Bug Fixes - -* [#1634](https://github.com/Greenstand/treetracker-web-map-client/issues/1634) Changed text from 'Planted on' to 'Captured on' in tree image and info ([2c45af3](https://github.com/Greenstand/treetracker-web-map-client/commit/2c45af31562fa8f10fc097d997192c97e9812f34)) - -# [2.3.0](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.2.6...v2.3.0) (2023-06-04) - - -### Features - -* api for new nearest ([e19f4a8](https://github.com/Greenstand/treetracker-web-map-client/commit/e19f4a8c3173b8b310174f34b93569fb460ff284)) -* upgrade core ([9950317](https://github.com/Greenstand/treetracker-web-map-client/commit/9950317fc106999257381164cd67a60c1ab859b0)) - -## [2.2.6](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.2.5...v2.2.6) (2023-06-04) - - -### Bug Fixes - -* apply k8s name is wrong [skip ci] ([168d0cd](https://github.com/Greenstand/treetracker-web-map-client/commit/168d0cdd537b4af401b57418306b79d783e0a73a)) -* k8s deployment fold is wrong, add case: master [skip ci] ([6bd8a74](https://github.com/Greenstand/treetracker-web-map-client/commit/6bd8a74873451c20d2e245d8bd3cba172c3901fd)) -* npm lock file problem ([e2e1f79](https://github.com/Greenstand/treetracker-web-map-client/commit/e2e1f797a77ed1fc12c05cf1052015e6ac94dbb2)) -* wrong strying format [skip ci] ([ebe2ede](https://github.com/Greenstand/treetracker-web-map-client/commit/ebe2ede9e374d4573cf6f903545824aef5fc17be)) - -## [2.2.5](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.2.4...v2.2.5) (2023-06-02) - - -### Bug Fixes - -* set host for dev env [skip ci] ([4291646](https://github.com/Greenstand/treetracker-web-map-client/commit/4291646e1786f824de0b6a1938569290a162d1bf)) -* the app crash on a tree icon clicking (mobile version) ([d97bb1c](https://github.com/Greenstand/treetracker-web-map-client/commit/d97bb1c57c0fcfad08c9053d8a6091aad3e194fa)) - -## [2.2.4](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.2.3...v2.2.4) (2023-06-01) +* broken lock file ([95c7162](https://github.com/Greenstand/treetracker-web-map-client/commit/95c71622a765aaaca63b0d5ddc99732a636af799)) +# [2.0.0-cwm.6](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.0.0-cwm.5...v2.0.0-cwm.6) (2023-03-10) ### Bug Fixes -* setup dev env domain ([18858e7](https://github.com/Greenstand/treetracker-web-map-client/commit/18858e7bc0964d1126a242197bc6e6199d60b17f)) - -## [2.2.3](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.2.2...v2.2.3) (2023-06-01) - - -### Bug Fixes - -* disable auto upgrade of libs ([fbe5d82](https://github.com/Greenstand/treetracker-web-map-client/commit/fbe5d82a180259daf086f91b4230b06f940d930e)) - -## [2.2.2](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.2.1...v2.2.2) (2023-05-29) - - -### Bug Fixes - -* breacn crumb link redirection fro empty url ([f04eaad](https://github.com/Greenstand/treetracker-web-map-client/commit/f04eaad0d909d24e03932e928cd8c921206a995d)) -* unwrap last item with link component ([a77df0b](https://github.com/Greenstand/treetracker-web-map-client/commit/a77df0b04dd1a6d16445a3731e96a58608703e90)) -* version format problem in action [skip ci] ([49fde0f](https://github.com/Greenstand/treetracker-web-map-client/commit/49fde0f1571f84602bc637d2c0ce8c9da00b84d3)) - -## [2.2.1](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.2.0...v2.2.1) (2023-05-18) - - -### Bug Fixes - -* deploy get wrong channel [skip ci] ([c254189](https://github.com/Greenstand/treetracker-web-map-client/commit/c254189dfc3b4fb31ba262e9aa674ef042a13402)) -* deploy to dev at pr [skip ci] ([b24760d](https://github.com/Greenstand/treetracker-web-map-client/commit/b24760d8d8918289b37861fdf340a0e66a40f2e5)) -* don't deploy [skip ci] ([2f5d8ab](https://github.com/Greenstand/treetracker-web-map-client/commit/2f5d8ab8c60340815cd12f7d7d4a5f215214eb0e)) -* EOF [skip ci] ([00872cb](https://github.com/Greenstand/treetracker-web-map-client/commit/00872cb27fafd53e2427cf4e687fc213722dc6fe)) -* js minor [skip ci] ([5ebb6b7](https://github.com/Greenstand/treetracker-web-map-client/commit/5ebb6b78ce5cca3d4735e8a633f937a798c16140)) -* JS minor [skip ci] ([311b0cc](https://github.com/Greenstand/treetracker-web-map-client/commit/311b0cc59daf2b433e7076b370379ce65ab4615c)) -* minor [skip ci] ([7237ccf](https://github.com/Greenstand/treetracker-web-map-client/commit/7237ccfa86fea6118311d285f61be8d97c4324c8)) -* minor [skip ci] ([b7934f4](https://github.com/Greenstand/treetracker-web-map-client/commit/b7934f436cb36300ba9a957bd031be28915b501d)) -* syntax error in the yaml ([b408716](https://github.com/Greenstand/treetracker-web-map-client/commit/b40871629e0bfbeb804f86bcd9571218fdcedfff)) -* test release CI ([361c965](https://github.com/Greenstand/treetracker-web-map-client/commit/361c9657cfdc04092532d091f83f2bf46683020a)) -* use `v` prfix the version [skip ci] ([6dfda0b](https://github.com/Greenstand/treetracker-web-map-client/commit/6dfda0b8230e1e95ac7f11f3f374ff3992f0e588)) - -# [2.2.0](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.1.1...v2.2.0) (2023-05-15) - - -### Bug Fixes - -* add the article tag to wrapp the about the orgnization section ([34fd647](https://github.com/Greenstand/treetracker-web-map-client/commit/34fd6476b254d5164fdb9e89691c5cb16931d79f)) -* align timeline on token page ([509dfa7](https://github.com/Greenstand/treetracker-web-map-client/commit/509dfa7297f48612010a39ad7cdfb2f6b454873d)) -* article not wrapping whole content ([f712421](https://github.com/Greenstand/treetracker-web-map-client/commit/f7124212040e8eeada9ecded07ca74bed0449b9f)) -* config hook undefined ([cb7cea7](https://github.com/Greenstand/treetracker-web-map-client/commit/cb7cea714f2715fe9959984f7973b568de1ac70f)) -* mobile app height incorrect ([27eb83b](https://github.com/Greenstand/treetracker-web-map-client/commit/27eb83b97f245585b21de25181774d8418e83994)) -* navbar items not vertical centered ([45366d0](https://github.com/Greenstand/treetracker-web-map-client/commit/45366d0dbeaac6551c64f28689e8b9d13fb061c8)) -* photo of planter is missing [#1509](https://github.com/Greenstand/treetracker-web-map-client/issues/1509) ([0cfe27a](https://github.com/Greenstand/treetracker-web-map-client/commit/0cfe27ac1ea01e04c221e646e621f4a8bab5abaf)) -* react styles warning ([6f67cb0](https://github.com/Greenstand/treetracker-web-map-client/commit/6f67cb09f400f674f5959565f7d9c56a19c8655c)) -* remove the article tag around the impact section: ([ab1a8c3](https://github.com/Greenstand/treetracker-web-map-client/commit/ab1a8c3e365590e7fcf0cc4656bcb71df493e741)) -* solve merge conflict ([b3c3b86](https://github.com/Greenstand/treetracker-web-map-client/commit/b3c3b864dd7cfc6c296ae2a003ed5d03693f94dd)) -* temply use npm install ([6668e52](https://github.com/Greenstand/treetracker-web-map-client/commit/6668e523a075f7a645a3b33a3311e02f288c9ebf)) -* trigger ([5b4bd32](https://github.com/Greenstand/treetracker-web-map-client/commit/5b4bd32522896ed2c62913386c7ff2c25611306c)) -* update image link to work with getThumbnailImageUrls ([a074f06](https://github.com/Greenstand/treetracker-web-map-client/commit/a074f06f7f13a5c8e4dc5e7e597c5d124998b6aa)) -* **wallet:** default list style showing ([94ad168](https://github.com/Greenstand/treetracker-web-map-client/commit/94ad1681d6191892bb3cdad6f502c07ffc74a0ac)) - - -### Features - -* add fragment put time stamp data inside that ([9afe80a](https://github.com/Greenstand/treetracker-web-map-client/commit/9afe80a7a3102068263003af5edd581e279e1eb3)) -* add new map core ([d8dec86](https://github.com/Greenstand/treetracker-web-map-client/commit/d8dec868b39004b9f525868dbd88dd465d3cb77e)) -* add space between since and date ([a493fe4](https://github.com/Greenstand/treetracker-web-map-client/commit/a493fe4d577bb609fde6229c77ed4e738bec6cac)) -* add time element in mobile and pc view on planters page ([5f08dca](https://github.com/Greenstand/treetracker-web-map-client/commit/5f08dca2d5976eb029ee0d70543dbfc07b5489c4)) -* added time element in organization page for mobile view ([eff94b3](https://github.com/Greenstand/treetracker-web-map-client/commit/eff94b3f790762a8af41319e550e5e1403662eae)) -* first for user-profile ([65a72cc](https://github.com/Greenstand/treetracker-web-map-client/commit/65a72ccc6f3196b5270d6aaf995d742070753607)) -* first try on user profile ([75d25ea](https://github.com/Greenstand/treetracker-web-map-client/commit/75d25ea74de4a6a9c6d5cfcf7fd90acefe1b0227)) -* remove   and add {} for extra space ([10da281](https://github.com/Greenstand/treetracker-web-map-client/commit/10da2811abaeb9c0a49bfe7d8c6c8dfc17797b90)) -* remove extra stuff ([84c8590](https://github.com/Greenstand/treetracker-web-map-client/commit/84c85908ba7962935f7e8326e55aafe7bb27b815)) -* remove moment value from datetime attribute ([faa8927](https://github.com/Greenstand/treetracker-web-map-client/commit/faa89276f73e71a95e529728b0963a47d7f309bc)) -* set tree species section with ul and li tags ([7ff30fc](https://github.com/Greenstand/treetracker-web-map-client/commit/7ff30fc3d8ce75910b384c9def87bbe7c19fdc5a)) -* time element added to wallets page ([5dc4dde](https://github.com/Greenstand/treetracker-web-map-client/commit/5dc4ddedc9e4befa90294d7910d81d84b2d728e6)) -* time element added to wallets page ([e61a16f](https://github.com/Greenstand/treetracker-web-map-client/commit/e61a16faeb92196ff09eda3569b0f560dba5a985)) -* ul and li tags added to wallet page ([1e8ebc5](https://github.com/Greenstand/treetracker-web-map-client/commit/1e8ebc5ba23adf5cd2aeaeb73822e7b58952395b)) -* updgrade map core ([f0d988b](https://github.com/Greenstand/treetracker-web-map-client/commit/f0d988b2927b18eb1ab59045198e79e27f0acd8e)) -* version trigger ([6c8e8f6](https://github.com/Greenstand/treetracker-web-map-client/commit/6c8e8f69cc59463647fcfbf739782fa79279ea0a)) -* wrap timestamp inside time element ([9a854a4](https://github.com/Greenstand/treetracker-web-map-client/commit/9a854a405c46ca8672a94616e1a95fccc94a6102)) - -## [2.1.1](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.1.0...v2.1.1) (2023-05-04) - - - -### Bug Fixes - - - -### Features - - -# [2.0.0-beta.236](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.0.0-beta.235...v2.0.0-beta.236) (2023-03-10) +- hardcode for branch ([b433db4](https://github.com/Greenstand/treetracker-web-map-client/commit/b433db41ba79fc5a9c3ce95f2c760c64c21eea61)) +# [2.0.0-cwm.5](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.0.0-cwm.4...v2.0.0-cwm.5) (2023-03-10) ### Bug Fixes -* trigger ci ([cde181e](https://github.com/Greenstand/treetracker-web-map-client/commit/cde181e5dd979b6e98666d11f82c0b148b4e0f90)) - +- merge cwm ([dd2286d](https://github.com/Greenstand/treetracker-web-map-client/commit/dd2286d8b9cc5fa993bb5fe569c1f24546b5e048)) +- remove impact section ([2346e71](https://github.com/Greenstand/treetracker-web-map-client/commit/2346e715687b9ff881ce0f91ba8869f638b6484f)) +- version ([44a7522](https://github.com/Greenstand/treetracker-web-map-client/commit/44a75223fa2a07d4a9a84b0bf4afb01dbe951e54)) ### Features -* deployment for alpha [skip ci] ([45b3e76](https://github.com/Greenstand/treetracker-web-map-client/commit/45b3e767bdf16c2d3f72729c7f6c1c3571fd34ca)) - -# [2.0.0-beta.235](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.0.0-beta.234...v2.0.0-beta.235) (2023-03-10) - - -### Bug Fixes - -* wrong branch name ([1c535b3](https://github.com/Greenstand/treetracker-web-map-client/commit/1c535b3ddf90cca12613f65a7ecc80a80239914a)) - -# [2.0.0-beta.234](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.0.0-beta.233...v2.0.0-beta.234) (2023-03-10) +- deployment action [skip ci] ([d6ebcdc](https://github.com/Greenstand/treetracker-web-map-client/commit/d6ebcdc64075c037bd3a300d90ca810acf2907d2)) +# [2.0.0-cwm.4](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.0.0-cwm.3...v2.0.0-cwm.4) (2023-03-09) ### Bug Fixes -* delete previous merge ci ([fa8ef3f](https://github.com/Greenstand/treetracker-web-map-client/commit/fa8ef3fce5c0ff652ddcbef62cb97ce70047ebb5)) -* missing channle for beta [skip ci] ([ed6dd7c](https://github.com/Greenstand/treetracker-web-map-client/commit/ed6dd7c576258b8368d1fd9627e8753b34078fd4)) - -# [2.0.0-beta.233](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.0.0-beta.232...v2.0.0-beta.233) (2023-03-10) +- action wrong folder ([42a5e22](https://github.com/Greenstand/treetracker-web-map-client/commit/42a5e22826ff8c1c26d0e4ea0c26b841f833ade0)) +- overlay folder name [skip ci] ([68b36ee](https://github.com/Greenstand/treetracker-web-map-client/commit/68b36ee5614b36124beed1522edc79d56f56c599)) +- restore change log ([844e7ed](https://github.com/Greenstand/treetracker-web-map-client/commit/844e7ed497fb41a9cee6326a965673b7bf737eb3)) +# [2.0.0-cwm.4](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.0.0-cwm.3...v2.0.0-cwm.4) (2023-03-09) ### Bug Fixes -* hardcode for branch ([b433db4](https://github.com/Greenstand/treetracker-web-map-client/commit/b433db41ba79fc5a9c3ce95f2c760c64c21eea61)) -* version ([44a7522](https://github.com/Greenstand/treetracker-web-map-client/commit/44a75223fa2a07d4a9a84b0bf4afb01dbe951e54)) - - -### Features - -* merge change from cwm ([9c95a3a](https://github.com/Greenstand/treetracker-web-map-client/commit/9c95a3aae9942cf130c654479e07569e2df39540)) - -# [2.0.0-beta.232](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.0.0-beta.231...v2.0.0-beta.232) (2023-03-09) +- action wrong folder ([42a5e22](https://github.com/Greenstand/treetracker-web-map-client/commit/42a5e22826ff8c1c26d0e4ea0c26b841f833ade0)) +- overlay folder name [skip ci] ([68b36ee](https://github.com/Greenstand/treetracker-web-map-client/commit/68b36ee5614b36124beed1522edc79d56f56c599)) +- restore change log ([844e7ed](https://github.com/Greenstand/treetracker-web-map-client/commit/844e7ed497fb41a9cee6326a965673b7bf737eb3)) +# [2.0.0-cwm.1](https://github.com/Greenstand/treetracker-web-map-client/compare/v1.14.0...v2.0.0-cwm.1) (2023-03-02) ### Bug Fixes -* ab next [skip ci] ([ceb63c5](https://github.com/Greenstand/treetracker-web-map-client/commit/ceb63c51b97889c87ab9c12d8234774fd0b6fa85)) -* action bug [skip ci] ([99daf7a](https://github.com/Greenstand/treetracker-web-map-client/commit/99daf7ae3c28371ad7ffc352fb46ebcc1184d3ad)) -* action typo ([49631fb](https://github.com/Greenstand/treetracker-web-map-client/commit/49631fb4f24df3e99a0bed98b88216f52cac7b51)) -* action wrong folder ([42a5e22](https://github.com/Greenstand/treetracker-web-map-client/commit/42a5e22826ff8c1c26d0e4ea0c26b841f833ade0)) -* can not use range in prerelease ([ee32c68](https://github.com/Greenstand/treetracker-web-map-client/commit/ee32c688381c272ebd40f64f2b311aa28db6b2bc)) -* checkout wrong branch ([a51050b](https://github.com/Greenstand/treetracker-web-map-client/commit/a51050b7567132065a641540fd3da0c8b40d5b95)) -* close changelog temply ([cdc6550](https://github.com/Greenstand/treetracker-web-map-client/commit/cdc655032e914e409cb31f49bce711ee1a478f7b)) -* delete old dployment ([f8f7f71](https://github.com/Greenstand/treetracker-web-map-client/commit/f8f7f71d1c21b2eee134d1f29759db05a5692f4a)) -* echo [skip ci] ([d71774f](https://github.com/Greenstand/treetracker-web-map-client/commit/d71774f62628ff29739d5ccc32c3abab5267594b)) -* echo [skip ci] ([6b2e386](https://github.com/Greenstand/treetracker-web-map-client/commit/6b2e386a8643fabe4b3e628decab58b334bfc05d)) -* echo [skip ci] ([a3d2460](https://github.com/Greenstand/treetracker-web-map-client/commit/a3d2460e1c008e67cbfd3ada8a41fd0e64c4fc39)) -* env var [skip ci] ([9b577d8](https://github.com/Greenstand/treetracker-web-map-client/commit/9b577d8b0e9068bcef677b08553644080bfde57d)) -* info [skip ci] ([c48c867](https://github.com/Greenstand/treetracker-web-map-client/commit/c48c8678ebb60afb4c48088f38b90dadd60425eb)) -* info [skip ci] ([d23b638](https://github.com/Greenstand/treetracker-web-map-client/commit/d23b6384f352c23a331e4522c71ca7fc07c5743d)) -* js syntax [skip ci] ([2df61f0](https://github.com/Greenstand/treetracker-web-map-client/commit/2df61f0b0c58ed2e6ea8d07ba9080f9b20a36808)) -* js syntax [skip ci] ([d6824c2](https://github.com/Greenstand/treetracker-web-map-client/commit/d6824c26c700d15abb9f09bf8a2dc7caef1d7395)) -* merge cwm ([dd2286d](https://github.com/Greenstand/treetracker-web-map-client/commit/dd2286d8b9cc5fa993bb5fe569c1f24546b5e048)) -* overlay folder name [skip ci] ([68b36ee](https://github.com/Greenstand/treetracker-web-map-client/commit/68b36ee5614b36124beed1522edc79d56f56c599)) -* push docker ([817e6b2](https://github.com/Greenstand/treetracker-web-map-client/commit/817e6b2ebc1112e85f22754879aae2dc7fc98686)) -* range in release rc ([87ee4ba](https://github.com/Greenstand/treetracker-web-map-client/commit/87ee4ba0ab3eac16097cd4049bfdff1617ccc6c7)) -* range in release rc ([cfda759](https://github.com/Greenstand/treetracker-web-map-client/commit/cfda759dd5d94fe0edbd4f1c42db6840b5ffc024)) -* rebase conflict ([ecccd32](https://github.com/Greenstand/treetracker-web-map-client/commit/ecccd325aa17cb3dcc2c4ca9a17dc3710898e4ad)) -* rename deploy yaml ([4c1058d](https://github.com/Greenstand/treetracker-web-map-client/commit/4c1058d7aa79350fbb654617c1ffcf82c6572365)) -* restore change log ([844e7ed](https://github.com/Greenstand/treetracker-web-map-client/commit/844e7ed497fb41a9cee6326a965673b7bf737eb3)) -* run it [skip ci] ([0133e2a](https://github.com/Greenstand/treetracker-web-map-client/commit/0133e2ae3aaec2a53a918ca0211e5ce447c61c60)) -* trigger ([8f9c4d4](https://github.com/Greenstand/treetracker-web-map-client/commit/8f9c4d45e4bc5b1700979184eb29e605e2547a62)) -* trigger ([970f7b7](https://github.com/Greenstand/treetracker-web-map-client/commit/970f7b765a09da9b534c18a19541a5c31bb4cc59)) -* trigger ([3a82d03](https://github.com/Greenstand/treetracker-web-map-client/commit/3a82d03f47b71cb4f9355d68218a223b8146db62)) -* trigger ([c0ae551](https://github.com/Greenstand/treetracker-web-map-client/commit/c0ae551b11a8b7b33e1ad917dbc9b1c65845dc64)) -* trigger release ([7e88dbe](https://github.com/Greenstand/treetracker-web-map-client/commit/7e88dbe15af5c02770bec7d068a8c2644345b3e8)) -* typo ([92ac507](https://github.com/Greenstand/treetracker-web-map-client/commit/92ac5073373144cbf457e54eba78fc26d0a2bfa0)) -* typo [skip ci] ([b8264c7](https://github.com/Greenstand/treetracker-web-map-client/commit/b8264c71ffb435f80919d4fc9e5145a53c4ea961)) -* typot[skip ci] ([a9f7de7](https://github.com/Greenstand/treetracker-web-map-client/commit/a9f7de7d11554fbf4f2513acf5629c39fb87a07d)) -* v [skip ci] ([f0c1476](https://github.com/Greenstand/treetracker-web-map-client/commit/f0c14763c4522597d75dae69a8575a31216fb1c4)) -* v [skip ci] ([7064044](https://github.com/Greenstand/treetracker-web-map-client/commit/7064044b8f88954f9a617dabd6203d4e27bf40d5)) -* wrong base for edit[skip ci] ([c570fdb](https://github.com/Greenstand/treetracker-web-map-client/commit/c570fdb2f31204ab208ce54ab078045ecd41fc83)) -* wrong channelname ([6396da3](https://github.com/Greenstand/treetracker-web-map-client/commit/6396da3804f7c0b4ab866e12f2b19cc8f50e1b65)) -* wrong folder ([92996b8](https://github.com/Greenstand/treetracker-web-map-client/commit/92996b872895b10fbeb36da64abb80f5dc001d18)) -* wrong k8s mapping [skip ci] ([7514805](https://github.com/Greenstand/treetracker-web-map-client/commit/7514805777713cb54cfbeefb23e2bfa1eef4ec8d)) -* wrong kuz base ([066bf29](https://github.com/Greenstand/treetracker-web-map-client/commit/066bf29b82d96fff3584c57b849a2509b3b32309)) -* wrong range [skip ci] ([a6098fc](https://github.com/Greenstand/treetracker-web-map-client/commit/a6098fc88f8bc5778adc8d327f3a5facf6a7bbb1)) -* wrong token in action ([a3cc917](https://github.com/Greenstand/treetracker-web-map-client/commit/a3cc91772e71b1b4fafe6e8793dc13fcf5d08130)) -* wrong token in action ([e803e6e](https://github.com/Greenstand/treetracker-web-map-client/commit/e803e6e7e78dd752e88df27f9e0f153411fa30f2)) -* wrong trigger [skip ci] ([d242171](https://github.com/Greenstand/treetracker-web-map-client/commit/d242171570c7fe09e47b7acc72b755314be71406)) -* wrong version number ([d41b5fd](https://github.com/Greenstand/treetracker-web-map-client/commit/d41b5fd7ff011ab619595af24a57e084e560638b)) -* wrong version number ([9f52a64](https://github.com/Greenstand/treetracker-web-map-client/commit/9f52a646e697a80c13dd5cb737e88da0db2f0746)) -* wrong version number ([a756082](https://github.com/Greenstand/treetracker-web-map-client/commit/a756082e257bafd8715fe4f06f92877d1419cb1e)) -* wrong version number ([4db9cca](https://github.com/Greenstand/treetracker-web-map-client/commit/4db9cca07a73a148a40741768d89ffb762d49769)) -* wrong version number ([6b5d611](https://github.com/Greenstand/treetracker-web-map-client/commit/6b5d611e0ab040fda23c1ba0d7e9580e4dfae297)) -* wrong version number ([ce6ee41](https://github.com/Greenstand/treetracker-web-map-client/commit/ce6ee410011f43c3ce43f33aa908952a5ff5beb3)) -* wrong version number ([8402d8c](https://github.com/Greenstand/treetracker-web-map-client/commit/8402d8c4fba16279a0959dc42d9c9af54d1c2770)) -* wrong version number ([ca7887d](https://github.com/Greenstand/treetracker-web-map-client/commit/ca7887d04d522f4bebdb94e09f811ad33d9b0745)) -* wrong version number ([f4e606a](https://github.com/Greenstand/treetracker-web-map-client/commit/f4e606af89a500d1022d88a30999f68eacf1ccab)) -* wrong version number ([100bd56](https://github.com/Greenstand/treetracker-web-map-client/commit/100bd56d0d3fea40eb8150bd1e7ccac478ca9af3)) -* wrong version number ([3bebf8a](https://github.com/Greenstand/treetracker-web-map-client/commit/3bebf8abf439dbd44ef87f30526e1b3e1d238f3f)) -* wrong version number [skip ci] ([53a057f](https://github.com/Greenstand/treetracker-web-map-client/commit/53a057f8e481a5d40dea6e9a8bd1ac2ec5d643ad)) -* wrong version number [skip ci] ([cf05c39](https://github.com/Greenstand/treetracker-web-map-client/commit/cf05c3992012824b16706740ac15b8c7b139face)) -* wrong version numberr [skip ci] ([dc6bbb8](https://github.com/Greenstand/treetracker-web-map-client/commit/dc6bbb82d67c1abeeabeed058ad2c6084a501fd8)) -* yaml format ([f8e5e05](https://github.com/Greenstand/treetracker-web-map-client/commit/f8e5e057a29651d7c67a3134085616edaf9a089b)) - - -### Features - -* action ([80a11ec](https://github.com/Greenstand/treetracker-web-map-client/commit/80a11ec4c340d3e0d6b43dfcf8fd537ea27cd1ed)) -* action for cwm ([975ea7a](https://github.com/Greenstand/treetracker-web-map-client/commit/975ea7a26231161d60c63e428f63a1d52a69a9c1)) -* add deployment to k8s ([8249642](https://github.com/Greenstand/treetracker-web-map-client/commit/8249642af1732b94904c4c6da2763db84c94a8e5)) -* dep for next ([558fd0e](https://github.com/Greenstand/treetracker-web-map-client/commit/558fd0e92f66a1611a35cccd8f9fcbf29dcaf6fa)) -* deploy to channel ([ea533c4](https://github.com/Greenstand/treetracker-web-map-client/commit/ea533c43d7e6b1b276b8fd38a1bcd6b554c5f916)) -* deployment action [skip ci] ([d6ebcdc](https://github.com/Greenstand/treetracker-web-map-client/commit/d6ebcdc64075c037bd3a300d90ca810acf2907d2)) -* dryrun[skip ci] ([8945bda](https://github.com/Greenstand/treetracker-web-map-client/commit/8945bda00ad8e21d5699aa3a68f92edc823bbd2e)) -* master use '' channel ([3254891](https://github.com/Greenstand/treetracker-web-map-client/commit/3254891da48b61371d7419d1d13cf14d37f06e86)) -* name [skip ci] ([b4b8ff9](https://github.com/Greenstand/treetracker-web-map-client/commit/b4b8ff90fe658cb460766061b23fcc9c8ae7ee23)) -* next domain ([e1524f7](https://github.com/Greenstand/treetracker-web-map-client/commit/e1524f70e0966fa93ffd3b8825523a3b7a9d280d)) -* next domain ([5a63431](https://github.com/Greenstand/treetracker-web-map-client/commit/5a6343100e5da7983ac7c8a4f2d3b2a96aac9895)) -* rename deployment folder ([ec0c066](https://github.com/Greenstand/treetracker-web-map-client/commit/ec0c066d875f05fbc23d1fe4302e1d868446569c)) -* star for any branch ([9df064f](https://github.com/Greenstand/treetracker-web-map-client/commit/9df064ff7d124d03a698bc71479705f147c16cb7)) - -# [2.0.0-beta.1](https://github.com/dadiorchen/treetracker-web-map-client/compare/v1.0.0...v2.0.0-beta.1) (2023-03-09) - - -### Bug Fixes - -* initial view wrong [#1332](https://github.com/dadiorchen/treetracker-web-map-client/issues/1332) ([baa8749](https://github.com/dadiorchen/treetracker-web-map-client/commit/baa87491ec8adcafd8c79db45cfeef7b3a3d80b7)) -* update tree tag value ([1b7b37d](https://github.com/dadiorchen/treetracker-web-map-client/commit/1b7b37de228b5322007ec0462bbfa87abdd44a6a)) -* [#158](https://github.com/dadiorchen/treetracker-web-map-client/issues/158) flash glitch ([87a2b2c](https://github.com/dadiorchen/treetracker-web-map-client/commit/87a2b2c50f821e21e7048833dbbcbfb346df6288)) -* [#261](https://github.com/dadiorchen/treetracker-web-map-client/issues/261) error on clicking tree icon ([8cc07b6](https://github.com/dadiorchen/treetracker-web-map-client/commit/8cc07b6f9c32143d352eb73d3241b07c56d6443c)) -* [#537](https://github.com/dadiorchen/treetracker-web-map-client/issues/537) ([943bc95](https://github.com/dadiorchen/treetracker-web-map-client/commit/943bc95ca68c25ed14e9c362ee8f418a5abeab89)) -* [#559](https://github.com/dadiorchen/treetracker-web-map-client/issues/559) ([1c167b4](https://github.com/dadiorchen/treetracker-web-map-client/commit/1c167b4bdf12598adf844ee0a32cb318ffc7eacc)) -* [#583](https://github.com/dadiorchen/treetracker-web-map-client/issues/583) ([776cc95](https://github.com/dadiorchen/treetracker-web-map-client/commit/776cc9562294e70cc6f1fa469fd80ce3640617d2)) -* [#610](https://github.com/dadiorchen/treetracker-web-map-client/issues/610) ([b6f4b4c](https://github.com/dadiorchen/treetracker-web-map-client/commit/b6f4b4cb278cd4fdbf6cca5af593a1f9d9c78139)) -* 000 is valid font weight option ([630e49d](https://github.com/dadiorchen/treetracker-web-map-client/commit/630e49d9efbacf9e2fb2cd3b0a8e53626f502c42)) -* **275:** add test to requestAPI, and modify requestAPI to use axios instead of fetch ([2ec8a73](https://github.com/dadiorchen/treetracker-web-map-client/commit/2ec8a735426203ea8c94596853228d2913cc7d3b)) -* 500 page showing in production env ([07a914f](https://github.com/dadiorchen/treetracker-web-map-client/commit/07a914fab5eaeccb20b7bd6d72bdd9acd9dd5d42)) -* 60 issue - show timeline icon when sidepanel is open ([532bede](https://github.com/dadiorchen/treetracker-web-map-client/commit/532bede376c6505b143053b31e83d5f8b75775b4)) -* ab next [skip ci] ([ceb63c5](https://github.com/dadiorchen/treetracker-web-map-client/commit/ceb63c51b97889c87ab9c12d8234774fd0b6fa85)) -* abbreviate numbers for CustomWorldMap on wallet page ([8f31850](https://github.com/dadiorchen/treetracker-web-map-client/commit/8f31850bf0f27477f804ed98c294a3d5109cfb1b)) -* about in org ([66d8235](https://github.com/dadiorchen/treetracker-web-map-client/commit/66d82359d162641549deb7b79c8dd13ad552f9fb)) -* about order ([665d07a](https://github.com/dadiorchen/treetracker-web-map-client/commit/665d07a51399ab8a869c5ae6825db6e645565eeb)) -* action bug [skip ci] ([99daf7a](https://github.com/dadiorchen/treetracker-web-map-client/commit/99daf7ae3c28371ad7ffc352fb46ebcc1184d3ad)) -* action problem ([cfb2a28](https://github.com/dadiorchen/treetracker-web-map-client/commit/cfb2a2878375879dc72f2cb7acf82c806c85c566)) -* action typo ([49631fb](https://github.com/dadiorchen/treetracker-web-map-client/commit/49631fb4f24df3e99a0bed98b88216f52cac7b51)) -* action wrong folder ([42a5e22](https://github.com/dadiorchen/treetracker-web-map-client/commit/42a5e22826ff8c1c26d0e4ea0c26b841f833ade0)) -* adapted PlanterQuote card for mobile ([ab9db3f](https://github.com/dadiorchen/treetracker-web-map-client/commit/ab9db3f405b38d422379c1927c894a842623d807)) -* add alignitems ([3993fef](https://github.com/dadiorchen/treetracker-web-map-client/commit/3993fef69667cc8809ffa7075f6e702e5825670a)) -* add async await ([4234380](https://github.com/dadiorchen/treetracker-web-map-client/commit/4234380e16e38cf257ca879785260098a39e8a19)) -* add google fonts link to Head ([b7c0333](https://github.com/dadiorchen/treetracker-web-map-client/commit/b7c0333f0aa1a3ca2f1f074c511e1df5927e89e4)) -* add infoWrapper ([cd15cdd](https://github.com/dadiorchen/treetracker-web-map-client/commit/cd15cdda0a0812759f7b31b2cddaf9447e34ba21)) -* add is-ci for husky prepare script ([18a0cd8](https://github.com/dadiorchen/treetracker-web-map-client/commit/18a0cd87b7fdb6382fedaf69bf08823e51cda64b)) -* add key in getStorageValue ([3ad00b0](https://github.com/dadiorchen/treetracker-web-map-client/commit/3ad00b0a3f951c45e47c67505b7cd273e4a435ea)) -* add margin ([662082f](https://github.com/dadiorchen/treetracker-web-map-client/commit/662082f753ed3ceec60c1fbbbf20cd2f6a17f269)) -* add mask ([3ece3ff](https://github.com/dadiorchen/treetracker-web-map-client/commit/3ece3ff3e26f9d745bf76f330cdd1491e5b55ff6)) -* add style to match figma font ([2352cee](https://github.com/dadiorchen/treetracker-web-map-client/commit/2352ceefc42be069fee140f155c333e3c21250b8)) -* add styles ([9101809](https://github.com/dadiorchen/treetracker-web-map-client/commit/9101809982b829814272eff5114ae2569801b8c5)) -* add tests ([38a9b3e](https://github.com/dadiorchen/treetracker-web-map-client/commit/38a9b3e2bab6b06d338ed170ff7562152b236ef0)) -* add tree image component ([24f88ca](https://github.com/dadiorchen/treetracker-web-map-client/commit/24f88ca15859f7adb3aa2e51639348427979a44b)) -* add type text / calledWith ([c9e5918](https://github.com/dadiorchen/treetracker-web-map-client/commit/c9e5918d2e72c77705eb417f6ed8fda2a1a2bca6)) -* added --no-install to git hooks ([241df92](https://github.com/dadiorchen/treetracker-web-map-client/commit/241df92cb97a3aa9fc9d7ca9d656f323e94ce605)) -* added a simple mount test for theme in cypress ([4babe1f](https://github.com/dadiorchen/treetracker-web-map-client/commit/4babe1f93fd1fc0dc3cc7dcd50cba65f331a5080)) -* added args for debounce func ([3c0c387](https://github.com/dadiorchen/treetracker-web-map-client/commit/3c0c387f9c6f3ef5965e44a0ea91b344dc093510)) -* added cursor pointer on slider hover ([70aefac](https://github.com/dadiorchen/treetracker-web-map-client/commit/70aefac95be10e4fbb33c3e769674237ea944ee9)) -* added cursor pointers to each reset ([cf929a0](https://github.com/dadiorchen/treetracker-web-map-client/commit/cf929a03cbb7d94b97a6cd30d2574297ebdc82ee)) -* added image domain setting for next/image ([a9d7041](https://github.com/dadiorchen/treetracker-web-map-client/commit/a9d7041e1529d195e35caf8aa4ce866e537de5f8)) -* added image mocking to [organizationid].cy.js ([76bbf6a](https://github.com/dadiorchen/treetracker-web-map-client/commit/76bbf6aa9c2e0b4c7a1377f7b8d0929d1f7eec10)) -* added integration test for wallet add ([d4d10f8](https://github.com/dadiorchen/treetracker-web-map-client/commit/d4d10f8a9b1572a41fb379722c8888855e3cadc7)) -* added Minted on Date ([42bd9f6](https://github.com/dadiorchen/treetracker-web-map-client/commit/42bd9f6d7fa921bd668e8bb68c950bb592f0dea6)) -* added missing font ([68423e8](https://github.com/dadiorchen/treetracker-web-map-client/commit/68423e81826ac1c17e53badaac3a3304d11db008)) -* added more img placeholders ([8345be3](https://github.com/dadiorchen/treetracker-web-map-client/commit/8345be3a7b3be854bd977443e2c1c42debd86dfe)) -* added organization logo ([f1e40a3](https://github.com/dadiorchen/treetracker-web-map-client/commit/f1e40a3625393e3ff79d768f9e2c783a047e9078)) -* added placeholder to tokekid and reverted svg ([ed67b5e](https://github.com/dadiorchen/treetracker-web-map-client/commit/ed67b5e859eab032e057888e8da50fb8accec756)) -* added PlanterQuote component to the organization's page ([8b1caa4](https://github.com/dadiorchen/treetracker-web-map-client/commit/8b1caa43d9123b475fa70edce79322909cf31cce)) -* added tree slider ([82738ed](https://github.com/dadiorchen/treetracker-web-map-client/commit/82738ed582f80a8df34273f53450fff48848ce67)) -* added unit test cases and corrected color ([566e6f7](https://github.com/dadiorchen/treetracker-web-map-client/commit/566e6f7a20fbdd9ad93bc06508776f0410ec4d2a)) -* **admin/theme:** added theme dependency to useEffect ([801098f](https://github.com/dadiorchen/treetracker-web-map-client/commit/801098f2a5af14637cca8b263d0b288aaf7573a9)) -* **admin/theme:** reset typography vals correctly ([c5b5364](https://github.com/dadiorchen/treetracker-web-map-client/commit/c5b5364f81e224d9a8497c76033ab30eaafffc68)) -* align cards on the same line ([e82b88c](https://github.com/dadiorchen/treetracker-web-map-client/commit/e82b88c1747d95e898c711b42c45d84c0bc090b9)) -* align cards on the wallets page ([74323ed](https://github.com/dadiorchen/treetracker-web-map-client/commit/74323ed7faba8a0d0e4a9c6e129d80f59d1e9197)) -* align icon and text ([cb43af4](https://github.com/dadiorchen/treetracker-web-map-client/commit/cb43af4443f40155db228bd1b706c6eb524dd4b8)) -* alignment issue with textfield ([37103b0](https://github.com/dadiorchen/treetracker-web-map-client/commit/37103b07a9cfbf67d82e9f20a0608572756d3f3c)) -* ambassidor + next path problem ([d3b4916](https://github.com/dadiorchen/treetracker-web-map-client/commit/d3b4916b801d0feebb80229ab68ef75f72100325)) -* auto-refreshing the page in dev mode [#255](https://github.com/dadiorchen/treetracker-web-map-client/issues/255) ([a626d58](https://github.com/dadiorchen/treetracker-web-map-client/commit/a626d5870161e52772cf03d14bda31160ac70ed0)) -* avoid refersh token page ([7aea3f4](https://github.com/dadiorchen/treetracker-web-map-client/commit/7aea3f45637ffc370d8f45b97388cdcc6f138c1c)) -* axios not a dev dependency ([ce15302](https://github.com/dadiorchen/treetracker-web-map-client/commit/ce15302bd91c0ffdaaf4084615477b3b36bcd5b2)) -* axios problem ([36fb949](https://github.com/dadiorchen/treetracker-web-map-client/commit/36fb9494e59771e48afa117d352df56e0a34cb1e)) -* borken test by delete sidepanel ([ffade2a](https://github.com/dadiorchen/treetracker-web-map-client/commit/ffade2a09b5e0282e01226ab1a96362701198e93)) -* broken app component ([b865327](https://github.com/dadiorchen/treetracker-web-map-client/commit/b86532766759c4e454285c8e981af74b8981c8e5)) -* broken component tests ([3d637d7](https://github.com/dadiorchen/treetracker-web-map-client/commit/3d637d7d34ba17dab86fe870d5ca3832f0226f05)) -* broken country jump ([afa4832](https://github.com/dadiorchen/treetracker-web-map-client/commit/afa4832a4043c1c85657fdbf05ae3811ad938aa3)) -* broken cypress test routes ([2ddaf91](https://github.com/dadiorchen/treetracker-web-map-client/commit/2ddaf919e492737035fda9a8586bb68d623ad403)) -* broken file of token page ([2399342](https://github.com/dadiorchen/treetracker-web-map-client/commit/2399342e213e55d75e96f1e38e5cf87e63a45650)) -* broken int test ([93cab57](https://github.com/dadiorchen/treetracker-web-map-client/commit/93cab57dd5747a3046bbeba9f80cebe24158aa34)) -* broken layout for longer names ([39bb1a8](https://github.com/dadiorchen/treetracker-web-map-client/commit/39bb1a810372e5d0ad23e015cddf156a7872790a)) -* broken test ([5e33d8d](https://github.com/dadiorchen/treetracker-web-map-client/commit/5e33d8d13d9aa922620230dee8359d311e683455)) -* broken test ([bb16c8c](https://github.com/dadiorchen/treetracker-web-map-client/commit/bb16c8c3080c735b32c67273c216642d7debc5b7)) -* broken test ([0cdc386](https://github.com/dadiorchen/treetracker-web-map-client/commit/0cdc386b329a6639ed7057967113e79cb0ebf7aa)) -* broken test ([079dd55](https://github.com/dadiorchen/treetracker-web-map-client/commit/079dd5591d01bfc1fd5ed3d57b08cff2ebeee935)) -* broken test ([e90e291](https://github.com/dadiorchen/treetracker-web-map-client/commit/e90e2910ec27f830684a70e428c8a926cd1bc54f)) -* broken test ([8749b3e](https://github.com/dadiorchen/treetracker-web-map-client/commit/8749b3e1cb462754318dd54057af5f2d542bd53d)) -* broken tests ([01e17f6](https://github.com/dadiorchen/treetracker-web-map-client/commit/01e17f65380870b7861105c91e0ae461cf2b496b)) -* brought the reset button up to the label line ([0137051](https://github.com/dadiorchen/treetracker-web-map-client/commit/013705101a13a50bfd0161dd704a0d69bfcc550f)) -* bug in progress bar ([e380184](https://github.com/dadiorchen/treetracker-web-map-client/commit/e3801842e5a3fee4832fb51a221f9a5156563a67)) -* bug in the new repo structure, will lead to fail when start 'npm start' ([40c1825](https://github.com/dadiorchen/treetracker-web-map-client/commit/40c1825a4923a4b722f63bdb3f12735da5b21556)) -* build github actions ([e737566](https://github.com/dadiorchen/treetracker-web-map-client/commit/e7375661eff2a3e77135c7d5dacd9796b27bdc07)) -* c solve conflicts ([3ec8aa1](https://github.com/dadiorchen/treetracker-web-map-client/commit/3ec8aa1767a4ee485c2b7ae9471b590ab135a8eb)) -* c solve top.js conflicts ([efc2149](https://github.com/dadiorchen/treetracker-web-map-client/commit/efc2149cafe781e448874e2122bf9902021d2d53)) -* can click tree on planter page ([293875e](https://github.com/dadiorchen/treetracker-web-map-client/commit/293875e5f2c82eeb7b3e3cb6f3d4223ddd814e13)) -* can not click tree on org/tree page ([c11a809](https://github.com/dadiorchen/treetracker-web-map-client/commit/c11a809e1cf7580ee9a2c544e3c0e758f9316b9a)) -* can not jump to token page ([5e94df8](https://github.com/dadiorchen/treetracker-web-map-client/commit/5e94df8dd16ac2d064a15051eaa58408bde233e8)) -* can not run cypress successfully ([0c965c2](https://github.com/dadiorchen/treetracker-web-map-client/commit/0c965c25e6150542ca1390faf49e83d52c5fc9b8)) -* can not use range in prerelease ([ee32c68](https://github.com/dadiorchen/treetracker-web-map-client/commit/ee32c688381c272ebd40f64f2b311aa28db6b2bc)) -* centered the image ([cc77254](https://github.com/dadiorchen/treetracker-web-map-client/commit/cc77254b32a88ca7b1acbdfaa9c2cbb151dcb4f7)) -* change api route ([24c9cd5](https://github.com/dadiorchen/treetracker-web-map-client/commit/24c9cd59f8925ff82017b96cc8bb90117d9da3fe)) -* change button text color on hover ([212e4bc](https://github.com/dadiorchen/treetracker-web-map-client/commit/212e4bc2ba45587d97a01588ef98be8693085947)) -* change css from LayoutEmbed.js instead of style.css ([a4471f2](https://github.com/dadiorchen/treetracker-web-map-client/commit/a4471f20c069ca12c57646444431353b5298b65f)) -* change font style to italic ([58ffd97](https://github.com/dadiorchen/treetracker-web-map-client/commit/58ffd9791f0ca2fe1dae283df198ac61783f0918)) -* change iconSuite parameter ([b9ff50f](https://github.com/dadiorchen/treetracker-web-map-client/commit/b9ff50f3f145cc1507c5c4b5392379f398fde02f)) -* change names variables & function ([5b0f8c0](https://github.com/dadiorchen/treetracker-web-map-client/commit/5b0f8c0971dd7bae98f2d85b581d3957fa27db2d)) -* change round to floor, to keep consistant with tile server ([9848351](https://github.com/dadiorchen/treetracker-web-map-client/commit/98483518071978684519e919a5459386148ec289)) -* change top e2e test url to relative ([d41f0c3](https://github.com/dadiorchen/treetracker-web-map-client/commit/d41f0c3f2e8e8e0f4fe56d252a7d5460cb5b7ede)) -* change tss-1shtwbt-year to muitypography-h6 ([028c458](https://github.com/dadiorchen/treetracker-web-map-client/commit/028c458be68ef2306b310fb895ef5639d2714325)) -* change tss-rvai9x-container to tss-19g14hs-container ([baeb304](https://github.com/dadiorchen/treetracker-web-map-client/commit/baeb304f4456e5d5d7ecd0c0785ea9ebcbf7dd97)) -* changed layout root to flex based ([d9f2b57](https://github.com/dadiorchen/treetracker-web-map-client/commit/d9f2b57388b5f3d0083cb643dce40867db97a6d9)) -* changed text content and text style for mobile ([5dfd0b5](https://github.com/dadiorchen/treetracker-web-map-client/commit/5dfd0b54d106b8afcb7ececcb41702c49516c8fc)) -* changedd a mistake I made on the img file ([2de5ccd](https://github.com/dadiorchen/treetracker-web-map-client/commit/2de5ccdd06fedc9c27b231674057b00df6558849)) -* changes to mobile logo click event ([3c0a640](https://github.com/dadiorchen/treetracker-web-map-client/commit/3c0a640e3456c2cfb13bcc5cbb9382c7e40a07c4)) -* changes to zoom on mobile issue ([c516ab7](https://github.com/dadiorchen/treetracker-web-map-client/commit/c516ab76a0bd9a5bf2b784d2a7dc32aff3085b84)) -* checkout wrong branch ([a51050b](https://github.com/dadiorchen/treetracker-web-map-client/commit/a51050b7567132065a641540fd3da0c8b40d5b95)) -* ci problem ([a77e06d](https://github.com/dadiorchen/treetracker-web-map-client/commit/a77e06d8b6a6d54bf07fcb8052f92ca86e7c3a57)), closes [/github.com/cypress-io/cypress/issues/1313#issuecomment-409342834](https://github.com//github.com/cypress-io/cypress/issues/1313/issues/issuecomment-409342834) -* cleaned up unnecessary things ([04b3716](https://github.com/dadiorchen/treetracker-web-map-client/commit/04b37163b8cb99658ede8dc65c14ed105ac2a25b)) -* click tree icon error ([71628c8](https://github.com/dadiorchen/treetracker-web-map-client/commit/71628c8102ef682b45350fc5ed0c5fe9f9fd4c0a)) -* client side render ([7d0757e](https://github.com/dadiorchen/treetracker-web-map-client/commit/7d0757e97a6c1e169d60285d6214563a569bddcc)) -* close changelog temply ([cdc6550](https://github.com/dadiorchen/treetracker-web-map-client/commit/cdc655032e914e409cb31f49bce711ee1a478f7b)) -* close country board because it is too slow on prod ([f65aea7](https://github.com/dadiorchen/treetracker-web-map-client/commit/f65aea7808ed39e0d6dbaa67b967604636cde085)) -* commented out updateUrl( ) ([136eaf6](https://github.com/dadiorchen/treetracker-web-map-client/commit/136eaf67efab48ca8bde25b536da0247a3e10f29)) -* component test Navbar.cy.js passes ([f7d0f52](https://github.com/dadiorchen/treetracker-web-map-client/commit/f7d0f529be034d3df03a5c4955611f37b5b549b8)) -* component test Share.cy.js passes ([7e544ad](https://github.com/dadiorchen/treetracker-web-map-client/commit/7e544adf0682e467c404ea9a766ba244038a1619)) -* configured cypress for next w/ webpack 5 ([22ebe97](https://github.com/dadiorchen/treetracker-web-map-client/commit/22ebe973177903aed3d7cdcf0b98b4d6e4f7f72f)) -* conflicts resolved ([be6bb2a](https://github.com/dadiorchen/treetracker-web-map-client/commit/be6bb2a394b52b7df57f2757265a34901d2b5963)) -* copy embed code from clipboard ([60f1f0b](https://github.com/dadiorchen/treetracker-web-map-client/commit/60f1f0ba72e6b6fa56fa2977b3a1a3b2b4e6eb0a)) -* copyright pattern ([5f3f714](https://github.com/dadiorchen/treetracker-web-map-client/commit/5f3f7149f3ce358e2960e67d4d220a3bc06e5a22)) -* correct button text color ([99a51d9](https://github.com/dadiorchen/treetracker-web-map-client/commit/99a51d93f1e97c58508f35f122b20b80bf2d8324)) -* correct letter spacing value format ([e1f079f](https://github.com/dadiorchen/treetracker-web-map-client/commit/e1f079fe369f73a6567adeb4ffb0a5d0804d5996)) -* corrected failing test for FontAddInput.cy.js ([dd6df14](https://github.com/dadiorchen/treetracker-web-map-client/commit/dd6df1467f42c0856fce66f3c479612a61850e3c)) -* corrected image rotation ([fa1730e](https://github.com/dadiorchen/treetracker-web-map-client/commit/fa1730e352378fff70b0821d52d523c0b21219de)) -* corrected the dates to when they were created ([98d3b59](https://github.com/dadiorchen/treetracker-web-map-client/commit/98d3b59ccd97b727288655bbdace416f3445c476)) -* **css:** Change MUI theme default letter spacing to 0. Fixes issue [#434](https://github.com/dadiorchen/treetracker-web-map-client/issues/434) ([53f6cc9](https://github.com/dadiorchen/treetracker-web-map-client/commit/53f6cc999e8a007ad5ecf474ca5f712f3708b486)) -* **css:** Use stylesOverride on global theme targeting the Typography component to set default letter spacing to 0. ([bc87963](https://github.com/dadiorchen/treetracker-web-map-client/commit/bc8796356689f39aee290ef861c3e0aa2c84f5da)), closes [#434](https://github.com/dadiorchen/treetracker-web-map-client/issues/434) -* custom card icon theme color ([5db7d49](https://github.com/dadiorchen/treetracker-web-map-client/commit/5db7d49283534aed03d6e00f9862dae614f37c70)) -* **custom-card:** height not same if text too long ([48d8d9a](https://github.com/dadiorchen/treetracker-web-map-client/commit/48d8d9a9f87c19f41ef2b4ed16d3a1259d430f69)) -* **cwm-editor:** double nested if statement ([fc6f00a](https://github.com/dadiorchen/treetracker-web-map-client/commit/fc6f00a40346b7bb218d2a0bf3a26d0ecf4ebd5a)) -* **cwm-editor:** input value not updating after initial value ([b1bd7f6](https://github.com/dadiorchen/treetracker-web-map-client/commit/b1bd7f6f7cc8a89f0c1d121e6250790ab5e2b920)) -* cypress now usable with next ([0496f4b](https://github.com/dadiorchen/treetracker-web-map-client/commit/0496f4b4d7bad3e5569c21f23acc3bd967b0268d)) -* cypress test error in FeaturedTreesSlider ([27445f1](https://github.com/dadiorchen/treetracker-web-map-client/commit/27445f1482405c99176245758e193787e57f3a72)) -* cypress unit tests ([c502d6d](https://github.com/dadiorchen/treetracker-web-map-client/commit/c502d6df384bc1cc13899e43ef918548d22c476d)) -* cypress-ct font loading ([949ce10](https://github.com/dadiorchen/treetracker-web-map-client/commit/949ce1010086313e7241b10264b97ea51924b82e)) -* **dashboard:** drag drop error with server side rendering ([59e0d6a](https://github.com/dadiorchen/treetracker-web-map-client/commit/59e0d6afd718afdd473e6cf9fc41ccd4c91bf0ad)) -* **dashboard:** test not using required ConfigProvider ([1f5b2a2](https://github.com/dadiorchen/treetracker-web-map-client/commit/1f5b2a2493c35dc4fdfd7b4a760a0781496b19f8)) -* **dashboard:** test not working with updated component ([ca6234a](https://github.com/dadiorchen/treetracker-web-map-client/commit/ca6234a86294f762ea8dfda4a7a4757cbf2d44ab)) -* **dashboard:** typos ([e341d17](https://github.com/dadiorchen/treetracker-web-map-client/commit/e341d1779d2b564a1b4be07ff4e263e384fd2acb)) -* **dashboard:** update button showing after clicked ([29807d9](https://github.com/dadiorchen/treetracker-web-map-client/commit/29807d961a8c6268097a72526d34a86d1073e133)) -* date on org page ([e0123fe](https://github.com/dadiorchen/treetracker-web-map-client/commit/e0123fe0ec89cb98befaab62a24857b8f6600e76)) -* delete console.logs ([58a8cc6](https://github.com/dadiorchen/treetracker-web-map-client/commit/58a8cc69e223e3e276d14cf977ef675985aa3481)) -* delete duplicate test file ([530d3d7](https://github.com/dadiorchen/treetracker-web-map-client/commit/530d3d740c1cb9a76d829bc3dc5d91f22537d780)) -* delete old dployment ([f8f7f71](https://github.com/dadiorchen/treetracker-web-map-client/commit/f8f7f71d1c21b2eee134d1f29759db05a5692f4a)) -* deleted duplicate leaderboard test file ([47e34bb](https://github.com/dadiorchen/treetracker-web-map-client/commit/47e34bbe94a3088b307c896b78ac30584faf439f)) -* deleted some comments ([205566d](https://github.com/dadiorchen/treetracker-web-map-client/commit/205566d7861a49f174dc54805bd57d9ecba0dabc)) -* deploy test ([b0805bd](https://github.com/dadiorchen/treetracker-web-map-client/commit/b0805bdde414d05dc1b4b13fc22ed24793c66db6)) -* deploy test ([a7fbfb8](https://github.com/dadiorchen/treetracker-web-map-client/commit/a7fbfb8a14424df88106eb192acd799ecd6bd8c7)) -* deploy test ([c64782a](https://github.com/dadiorchen/treetracker-web-map-client/commit/c64782adc2b0811ac6853dac4653d5d278eaaff9)) -* deploy to prod add git config ([313ab21](https://github.com/dadiorchen/treetracker-web-map-client/commit/313ab2114ac0c535a76e46a3f846b7758b0c9dd8)) -* deployment error ([9ba8290](https://github.com/dadiorchen/treetracker-web-map-client/commit/9ba82907dc9613f90bf7576d4b2f477ad569e70f)) -* detailed log ([651cda9](https://github.com/dadiorchen/treetracker-web-map-client/commit/651cda9e441bb5761858e99a5a342252684682e5)) -* dialog not fullscreen, header spacing ([afd2aba](https://github.com/dadiorchen/treetracker-web-map-client/commit/afd2abaab99465940c133253bb4fb7b27eb055ee)) -* disable country boad ([9863e01](https://github.com/dadiorchen/treetracker-web-map-client/commit/9863e018ba425541eb942c0db0d208c3fa398cdd)) -* display total on org page ([f266eb1](https://github.com/dadiorchen/treetracker-web-map-client/commit/f266eb10c46406d74305072547108b969d8023a0)) -* do not load tile server ([863aba6](https://github.com/dadiorchen/treetracker-web-map-client/commit/863aba668370b7174e1506667a63cb92592b4807)) -* document in SSR error ([285e1cd](https://github.com/dadiorchen/treetracker-web-map-client/commit/285e1cdfec9c48f1f55c8ab84462e7c73f03ca0f)) -* drawer animation not working on embed ([1a0d14b](https://github.com/dadiorchen/treetracker-web-map-client/commit/1a0d14b16324440006c43ea742b7a3afbd73eb2f)) -* drawer expand icon color ([7948562](https://github.com/dadiorchen/treetracker-web-map-client/commit/794856298fc6e0247b6955c248abcda3c74085cc)) -* drawer incorrect initial theme mode ([7728124](https://github.com/dadiorchen/treetracker-web-map-client/commit/7728124a52f74252a8cc10595b5cf3e9ef7d7ef6)) -* drawer title not clickable ([3ae8578](https://github.com/dadiorchen/treetracker-web-map-client/commit/3ae85781b27069e847abceb3c2454f56e2e7ca9f)) -* **drawer:** rounded border radius when docked ([def4df3](https://github.com/dadiorchen/treetracker-web-map-client/commit/def4df30d1a0d312c1621627cd8b118f818e7b7f)) -* **drawer:** unmount runtime error ([56c440e](https://github.com/dadiorchen/treetracker-web-map-client/commit/56c440ecf11c75a2c24e1e03884fec5715d61849)) -* duplicate back button on tree page ([3bcfac0](https://github.com/dadiorchen/treetracker-web-map-client/commit/3bcfac009f64962e91e057b4cd4ce717e9822d73)) -* echo [skip ci] ([d71774f](https://github.com/dadiorchen/treetracker-web-map-client/commit/d71774f62628ff29739d5ccc32c3abab5267594b)) -* echo [skip ci] ([6b2e386](https://github.com/dadiorchen/treetracker-web-map-client/commit/6b2e386a8643fabe4b3e628decab58b334bfc05d)) -* echo [skip ci] ([a3d2460](https://github.com/dadiorchen/treetracker-web-map-client/commit/a3d2460e1c008e67cbfd3ada8a41fd0e64c4fc39)) -* embed incorrect logo ([93779a3](https://github.com/dadiorchen/treetracker-web-map-client/commit/93779a397e299d2dcc9e86e984959ef06ee7fb7d)) -* embed logo incorrect url ([2085397](https://github.com/dadiorchen/treetracker-web-map-client/commit/2085397d1444516f1b0c0ef666b929c870117013)) -* embeded background was white in dark mode ([cae4d35](https://github.com/dadiorchen/treetracker-web-map-client/commit/cae4d350091de7040d6113a0c726ccfe07d504b9)) -* enable global board ([56422da](https://github.com/dadiorchen/treetracker-web-map-client/commit/56422daf09ee82cbde77d6289acd7cf2edebe2fd)) -* ensure card heights remain same ([ef5c619](https://github.com/dadiorchen/treetracker-web-map-client/commit/ef5c61920d2d6657b401a5822b2e970e380c5a5d)) -* entity tests ([6ca4a3f](https://github.com/dadiorchen/treetracker-web-map-client/commit/6ca4a3f5571527a5f6e3e9b26620e307872c66da)) -* env var [skip ci] ([9b577d8](https://github.com/dadiorchen/treetracker-web-map-client/commit/9b577d8b0e9068bcef677b08553644080bfde57d)) -* env var not a valid boolean ([11b1426](https://github.com/dadiorchen/treetracker-web-map-client/commit/11b142697bf3c414b7be422733165c53d6a09a10)) -* eslint errors ([254e585](https://github.com/dadiorchen/treetracker-web-map-client/commit/254e585c8aef7740e93f85df2196b67886720e8b)) -* extra slash ([6cdc0d0](https://github.com/dadiorchen/treetracker-web-map-client/commit/6cdc0d0a016af6a37f38421db156298a5e26fbd7)) -* faied test ([eacc51e](https://github.com/dadiorchen/treetracker-web-map-client/commit/eacc51e8a0839c36a6c77f1c290372790412f356)) -* failed lock file ([a238bdb](https://github.com/dadiorchen/treetracker-web-map-client/commit/a238bdb9422cb3553e5273db971c266eb4b9af75)) -* **featured-card:** update spacings conform design ([b1757df](https://github.com/dadiorchen/treetracker-web-map-client/commit/b1757dff692c9ff95aef80d31e90e56388a5976c)) -* featuredPlanterSlider ([394bbb8](https://github.com/dadiorchen/treetracker-web-map-client/commit/394bbb81c54ddd8d42062a4c852a188aa963e086)) -* filter close by default ([456fd22](https://github.com/dadiorchen/treetracker-web-map-client/commit/456fd222b5c1db100604c4c009044a77dcd6bff9)) -* final fix, added && conditional ([39821e5](https://github.com/dadiorchen/treetracker-web-map-client/commit/39821e5e84eb753e4ba08dba57165e3798d2dfa8)) -* firefox svg not visible ([aac904e](https://github.com/dadiorchen/treetracker-web-map-client/commit/aac904e9718e4f159ae29082cd596bca5fae5639)) -* fix BackButton styles ([b2cf156](https://github.com/dadiorchen/treetracker-web-map-client/commit/b2cf156d53a7a0ca2817a85fa4c1ebf3d9e157da)) -* fix error caused by targetTouches[0] ([eb63cd5](https://github.com/dadiorchen/treetracker-web-map-client/commit/eb63cd5e9c8de55ccf649db7184d11b6fe58c9d4)) -* fix files with ESLint and Prettier rules ([c4ef7c2](https://github.com/dadiorchen/treetracker-web-map-client/commit/c4ef7c2dd2dc7465449f630e990dbb4af1b584da)) -* fix files with ESLint and Prettier rules ([46e4288](https://github.com/dadiorchen/treetracker-web-map-client/commit/46e4288254943736fa6ab51b88f8838ac618b3d3)) -* fix merge conflicts ([722b2c4](https://github.com/dadiorchen/treetracker-web-map-client/commit/722b2c40b549ead45725e254ae8b41dbbfe94f6d)) -* fix to the ribbons margin ([d0b4b1e](https://github.com/dadiorchen/treetracker-web-map-client/commit/d0b4b1e9a4c43d15552b6d8bbec02a95d0a9c1da)) -* fix to the ribbons margin ([0357b2c](https://github.com/dadiorchen/treetracker-web-map-client/commit/0357b2c2c1633d9088dbdc903d616de0f4d6f079)) -* fix to the ribbons margin ([13b0207](https://github.com/dadiorchen/treetracker-web-map-client/commit/13b02072ea8f33f7c8707d0b8dfb3f62674731c1)) -* fixed changes talked about ([a4640a1](https://github.com/dadiorchen/treetracker-web-map-client/commit/a4640a1af6afa80ea4750041d8f995206c23dd31)) -* fixed eslint error ([7e08f78](https://github.com/dadiorchen/treetracker-web-map-client/commit/7e08f789d280129466471db7ae48afb6bf9ffa94)) -* fixed eslint error ([c916984](https://github.com/dadiorchen/treetracker-web-map-client/commit/c91698474a4f5e3d94e51996689fc8dffe149ca3)) -* fixed mobile display issues ([efeb7c8](https://github.com/dadiorchen/treetracker-web-map-client/commit/efeb7c8319a3257138ede848dc0cc52ef2db0cee)) -* fixed some verbage "wallet created on" mobile ([6ca133d](https://github.com/dadiorchen/treetracker-web-map-client/commit/6ca133daf64bc3c97954b454eb9116252ab1c097)) -* fixed ssr mocking in organization page test ([3324bf3](https://github.com/dadiorchen/treetracker-web-map-client/commit/3324bf35be5299897b95dfe088150a3322aa0a38)) -* fixed the impact graph to the new svg icon ([ce39e8b](https://github.com/dadiorchen/treetracker-web-map-client/commit/ce39e8bedb2070a3abeddcedd946b88a57c291d9)) -* fixed typos ([8b9b04e](https://github.com/dadiorchen/treetracker-web-map-client/commit/8b9b04e1e08671977ee02b0c47189e681dc78cf3)) -* fixes CL issue with cypress ([a51a73e](https://github.com/dadiorchen/treetracker-web-map-client/commit/a51a73e94042739df99312f39b78da1121f0c7e2)) -* follow-redirects security warning ([a02249a](https://github.com/dadiorchen/treetracker-web-map-client/commit/a02249ad6d273c8072ca65426a36e37800b91a92)) -* follow-redirects security warning ([00d2c79](https://github.com/dadiorchen/treetracker-web-map-client/commit/00d2c79ff71be0a42e5d64cc4c1fddaab0e99fd5)) -* full path pushed when URL updates ([4fc870e](https://github.com/dadiorchen/treetracker-web-map-client/commit/4fc870e047d9c6f24bfeb2a2d1dee11c3c2af9a3)) -* google font imports ([5eebed0](https://github.com/dadiorchen/treetracker-web-map-client/commit/5eebed072421f45dd0764ca13fc8527bc7a3e149)) -* handle no tree case ([cbd3d76](https://github.com/dadiorchen/treetracker-web-map-client/commit/cbd3d7633f51dfc7f47654af82dd37c4f2c33a45)) -* home page styles ([335906a](https://github.com/dadiorchen/treetracker-web-map-client/commit/335906a607024675e6a103818c5fd7dcc5a7d219)) -* home useEmbed merge conflict ([3148536](https://github.com/dadiorchen/treetracker-web-map-client/commit/314853688fb9d9d6a0a0837860e8975bf97587ce)) -* homepage padding ([eb3d46b](https://github.com/dadiorchen/treetracker-web-map-client/commit/eb3d46b8029378a44f464536f9651cc4b844df61)) -* homepage padding ([98f1f69](https://github.com/dadiorchen/treetracker-web-map-client/commit/98f1f6956912a4d05a95abfddd22a3e50cfc5be9)) -* homepage padding ([c043035](https://github.com/dadiorchen/treetracker-web-map-client/commit/c0430355784cc1177f5ab8faadc06722db50b2de)) -* homepage padding ([b27c32a](https://github.com/dadiorchen/treetracker-web-map-client/commit/b27c32a774aca8069f51961813a20aea61d7bf06)) -* **home:** replace hard-coded vals with palette vals ([635941f](https://github.com/dadiorchen/treetracker-web-map-client/commit/635941f87b3556fd21945667a046f75d590c0785)) -* **hooks:** localstorage initial state is undefined ([78ad0fb](https://github.com/dadiorchen/treetracker-web-map-client/commit/78ad0fb47a878192c3e5a0a667e315b632b84121)) -* hover on button ([d4253f9](https://github.com/dadiorchen/treetracker-web-map-client/commit/d4253f991f639cd1c0b89a580735cc2029b08514)) -* i've removed a useeffect that we don't need ([4abbad0](https://github.com/dadiorchen/treetracker-web-map-client/commit/4abbad049bfb1470d1427716022835f4bf12bbce)) -* icon no dark mode support ([51b329b](https://github.com/dadiorchen/treetracker-web-map-client/commit/51b329b74890fd13cd2496f7f75863f4f79cf1b9)) -* image height in embded ([915adcc](https://github.com/dadiorchen/treetracker-web-map-client/commit/915adcc8b9d176901563f1f3d90d3bfde58c3d12)) -* image url ([e7c0354](https://github.com/dadiorchen/treetracker-web-map-client/commit/e7c03542bbd0ea7a479707e82dbcf425d5c20825)) -* image wrapper component uses format date string ([d69d736](https://github.com/dadiorchen/treetracker-web-map-client/commit/d69d736548e3d713a79b1adfdb4af14449718dcf)) -* impact graph mobile height ([c443b5e](https://github.com/dadiorchen/treetracker-web-map-client/commit/c443b5e92c1b44377c1f1c827d863995d895127e)) -* impact section icon colors ([8e7baed](https://github.com/dadiorchen/treetracker-web-map-client/commit/8e7baedc31525c4b66f92b53beae676e35d6e968)) -* impact section icon heights ([97317a1](https://github.com/dadiorchen/treetracker-web-map-client/commit/97317a14f4e9d259e96fd55cc1e8df46d1263f95)) -* **impact:** cards not vertically aligned ([69be32a](https://github.com/dadiorchen/treetracker-web-map-client/commit/69be32a0a0a41f098ebd3fbfe30c2345458b8824)) -* implement the filter dates ([87a28ce](https://github.com/dadiorchen/treetracker-web-map-client/commit/87a28ce75efc36bf8f96fb2bc948f4a991528def)) -* import useTheme from material ([dd03e46](https://github.com/dadiorchen/treetracker-web-map-client/commit/dd03e468ddfd28bfa20280b7e88e8c07564bfda5)) -* improve svg handling ([6d6256e](https://github.com/dadiorchen/treetracker-web-map-client/commit/6d6256e11cb000654d0d4fe1653c2423e5ee30f0)) -* improved svg loading ([a9d7a50](https://github.com/dadiorchen/treetracker-web-map-client/commit/a9d7a503c0fb5cf90046c6b70ca26fbce60deb35)) -* inconsistent height of cards ([7d4b207](https://github.com/dadiorchen/treetracker-web-map-client/commit/7d4b20764e4ade74c77af828acf881b98d104cda)) -* incorrect import ([154bb09](https://github.com/dadiorchen/treetracker-web-map-client/commit/154bb0972e0484deaeba74236ab26c825807e9b9)) -* incorrectly displaying icons in some zoomlevel ([377b697](https://github.com/dadiorchen/treetracker-web-map-client/commit/377b697efc3d3439f7631c79b83289bf1856fef6)) -* increase test timeout for CustomImageWrapper ([dc5220c](https://github.com/dadiorchen/treetracker-web-map-client/commit/dc5220c7643f5230bb5a39b1d444197c8e79194a)) -* increased opacity and centered slider button ([d459dd6](https://github.com/dadiorchen/treetracker-web-map-client/commit/d459dd615bdb72cea41302e43960b63721f0e9ca)) -* info [skip ci] ([c48c867](https://github.com/dadiorchen/treetracker-web-map-client/commit/c48c8678ebb60afb4c48088f38b90dadd60425eb)) -* info [skip ci] ([d23b638](https://github.com/dadiorchen/treetracker-web-map-client/commit/d23b6384f352c23a331e4522c71ca7fc07c5743d)) -* initial theme mode from localstorage not working ([09b8688](https://github.com/dadiorchen/treetracker-web-map-client/commit/09b8688ef46eea984a7422662deb596d06e37e20)) -* installed missing eslint-react-plugin ([1c21716](https://github.com/dadiorchen/treetracker-web-map-client/commit/1c217160b5a049e8eeb71c75c3410fcb6d4c477d)) -* introduce a 'noBackground' prop to 'ProfileAvatar' component ([f110c4e](https://github.com/dadiorchen/treetracker-web-map-client/commit/f110c4e6cee85f05fc6870f6991eb19075ad8f9f)) -* inverted initial theme mode ([c5336a5](https://github.com/dadiorchen/treetracker-web-map-client/commit/c5336a53e82748a14f541d730fce853415ff07ad)) -* isr usage of msw ([38cbd8d](https://github.com/dadiorchen/treetracker-web-map-client/commit/38cbd8d58e2c6a1a631e7aa7ae988ee191fded2e)) -* issue [#254](https://github.com/dadiorchen/treetracker-web-map-client/issues/254) revocer nearest tree feature ([42c920a](https://github.com/dadiorchen/treetracker-web-map-client/commit/42c920a057d7ce232d12de26c868c6599d768730)) -* issue [#305](https://github.com/dadiorchen/treetracker-web-map-client/issues/305) mount the component with theme ([9b6d332](https://github.com/dadiorchen/treetracker-web-map-client/commit/9b6d332103333fa2edb7816f76a67c1e885f8df7)) -* issue [#317](https://github.com/dadiorchen/treetracker-web-map-client/issues/317) navbar disappeared ([703b0dc](https://github.com/dadiorchen/treetracker-web-map-client/commit/703b0dc5c7a0f2ec0afe23a44ca6178132747792)) -* issue [#359](https://github.com/dadiorchen/treetracker-web-map-client/issues/359) makeStyles import error ([bc3cbe6](https://github.com/dadiorchen/treetracker-web-map-client/commit/bc3cbe624e6b5458346c72b612c2d6253b27e251)) -* issue [#366](https://github.com/dadiorchen/treetracker-web-map-client/issues/366) org image stretched ([fc465e2](https://github.com/dadiorchen/treetracker-web-map-client/commit/fc465e20727d84505a314d3b529fd195e86c2c16)) -* issue [#392](https://github.com/dadiorchen/treetracker-web-map-client/issues/392) Miscellaneous minor errors/warnings ([2f2b7f8](https://github.com/dadiorchen/treetracker-web-map-client/commit/2f2b7f80938a772a952d65cd110a1579c0bfa2a0)) -* issue [#421](https://github.com/dadiorchen/treetracker-web-map-client/issues/421) world map should not be clickable ([f64f247](https://github.com/dadiorchen/treetracker-web-map-client/commit/f64f247f412c13e48444e75fc30140eb885727f9)) -* issue [#449](https://github.com/dadiorchen/treetracker-web-map-client/issues/449) broken flags ([446369e](https://github.com/dadiorchen/treetracker-web-map-client/commit/446369ed75b2d0e18873ebb268112ecd12d375c4)) -* issue [#469](https://github.com/dadiorchen/treetracker-web-map-client/issues/469) missing title for slider image ([e236da1](https://github.com/dadiorchen/treetracker-web-map-client/commit/e236da128cb4aa9783e1432ae614881583f24bfd)) -* issue [#484](https://github.com/dadiorchen/treetracker-web-map-client/issues/484) duplicate section ([fa8f10e](https://github.com/dadiorchen/treetracker-web-map-client/commit/fa8f10e1bf86f4a07841a9eb8f745833ed822166)) -* issue [#495](https://github.com/dadiorchen/treetracker-web-map-client/issues/495) move copyright panel behind drawer ([3d8165f](https://github.com/dadiorchen/treetracker-web-map-client/commit/3d8165f2c29d09a1c54e74035abd48a23c839a0d)) -* issue [#497](https://github.com/dadiorchen/treetracker-web-map-client/issues/497) move theme button ([dd2f7b5](https://github.com/dadiorchen/treetracker-web-map-client/commit/dd2f7b50b9e6b12aea5ae0aca0121154c3389e25)) -* issue # 250 broken cypress test ([8df1fd7](https://github.com/dadiorchen/treetracker-web-map-client/commit/8df1fd7f363005eedc98a82aa4dfee12a6a26863)) -* issue with cypress CL commands ([14af171](https://github.com/dadiorchen/treetracker-web-map-client/commit/14af171c53528da58e0e9c7971ffead1026709d5)) -* js syntax [skip ci] ([2df61f0](https://github.com/dadiorchen/treetracker-web-map-client/commit/2df61f0b0c58ed2e6ea8d07ba9080f9b20a36808)) -* js syntax [skip ci] ([d6824c2](https://github.com/dadiorchen/treetracker-web-map-client/commit/d6824c26c700d15abb9f09bf8a2dc7caef1d7395)) -* jump to contry ([9b5900c](https://github.com/dadiorchen/treetracker-web-map-client/commit/9b5900c3dcb82bbcdd90c645ec57ad3c5df45884)) -* jump to country ([30814ed](https://github.com/dadiorchen/treetracker-web-map-client/commit/30814edb7c8c0349b0c983469b39cd22c689b650)) -* kebab case warning ([05350d3](https://github.com/dadiorchen/treetracker-web-map-client/commit/05350d35ab68d2442590123ba1aceb1db6bec78b)) -* key string in getStorage ([1945d65](https://github.com/dadiorchen/treetracker-web-map-client/commit/1945d65cb673c4c7d669f73dd80c5481a3ba01e2)) -* layout fixes and improvements ([5cf0ebc](https://github.com/dadiorchen/treetracker-web-map-client/commit/5cf0ebc61adb7e5439f3a8f40189ed4f068d74f5)) -* layout Google copyright ([ab1402f](https://github.com/dadiorchen/treetracker-web-map-client/commit/ab1402f0c2835c8b58d976b75172657ccedcb4e3)) -* leaderboard fetch on continent ([883ae25](https://github.com/dadiorchen/treetracker-web-map-client/commit/883ae253c26aa37598fe78f782df361226a4c0b7)) -* left slider button not moving cards to inital position ([5b82346](https://github.com/dadiorchen/treetracker-web-map-client/commit/5b823463509f7499a4e549e7b1db442e700e53ed)) -* link to greenstand when greenstand logo ([0ea356d](https://github.com/dadiorchen/treetracker-web-map-client/commit/0ea356d02b9fea731911701486606cbbde4270c5)) -* lint errors ([37f39c4](https://github.com/dadiorchen/treetracker-web-map-client/commit/37f39c4a103da88cfe1238d0ad9ed7a45cd5da0a)) -* lint-staged settings ([96c4730](https://github.com/dadiorchen/treetracker-web-map-client/commit/96c4730ef301610d6f720f042148880604c0791f)) -* lint-staged settings ([ddacd4b](https://github.com/dadiorchen/treetracker-web-map-client/commit/ddacd4b3ff3930103875d69bfd79fadd2b10b272)) -* lint-staged settings ([7d6dafe](https://github.com/dadiorchen/treetracker-web-map-client/commit/7d6dafe46630d9a1606c7d5139cef1cfc6703459)) -* lint-staged settings ([93dbb14](https://github.com/dadiorchen/treetracker-web-map-client/commit/93dbb143548b5908e38936e8a2cac9940f964b78)) -* lock file ([d9494f4](https://github.com/dadiorchen/treetracker-web-map-client/commit/d9494f48054ea518fff37d4822b43172de56eef7)) -* lock file ([3535ba6](https://github.com/dadiorchen/treetracker-web-map-client/commit/3535ba64d00e14057385d0694804ca502c371f7e)) -* lock file update ([db35e7c](https://github.com/dadiorchen/treetracker-web-map-client/commit/db35e7c620b0a5e47e6bf0911dd6f770e2a0cc01)) -* lock update ([0f87a87](https://github.com/dadiorchen/treetracker-web-map-client/commit/0f87a8750f53df76571b95a0a10b6a10e8410ee4)) -* lockfile ([3fbaa43](https://github.com/dadiorchen/treetracker-web-map-client/commit/3fbaa4334d94ad8b0a46752d8e36c869f0853f7b)) -* logo in tree page ([90c6ce7](https://github.com/dadiorchen/treetracker-web-map-client/commit/90c6ce72770ad223dc750b40b9621fe2d837b557)) -* lost context ([36419c7](https://github.com/dadiorchen/treetracker-web-map-client/commit/36419c7718cdc4995a82701e205c134baa551274)) -* lowered zindex so button is below drawer.js ([925f0c2](https://github.com/dadiorchen/treetracker-web-map-client/commit/925f0c24c944108647912e60a13cd0f2518f7300)) -* made cursor to pointer on slider hover ([c4ba92b](https://github.com/dadiorchen/treetracker-web-map-client/commit/c4ba92b0d99a8f6a8a712e6260922d87831d5e0e)) -* made images look better ([8eff9ba](https://github.com/dadiorchen/treetracker-web-map-client/commit/8eff9babafbc2b6b333b062648fa5202ed54af4d)) -* made some css adjustments ([abcaf9e](https://github.com/dadiorchen/treetracker-web-map-client/commit/abcaf9effb60e8044835e529835a467a464e5914)) -* make css selector more specific [#552](https://github.com/dadiorchen/treetracker-web-map-client/issues/552) ([16d33b1](https://github.com/dadiorchen/treetracker-web-map-client/commit/16d33b12b840069ffb75b71de6e60f9ee856f87f)) -* make slider button visible ([3bbffa8](https://github.com/dadiorchen/treetracker-web-map-client/commit/3bbffa8d0b7e8231605493d47302a789bbb5a866)) -* map container size problem ([ad7cd43](https://github.com/dadiorchen/treetracker-web-map-client/commit/ad7cd43182f4cf950064447534da76e3b2f1bdca)) -* map import ([b84046b](https://github.com/dadiorchen/treetracker-web-map-client/commit/b84046beaa930dfc426290f1c3beaf77c1164ab8)) -* mapname domain problem ([b25e895](https://github.com/dadiorchen/treetracker-web-map-client/commit/b25e8956eee942050638104a31e97f3d50ee3492)) -* mapname domain problem ([0dc6bbd](https://github.com/dadiorchen/treetracker-web-map-client/commit/0dc6bbdaeb5ac1b051649c1806c9eb38b1dd3259)) -* menu ([705b8b0](https://github.com/dadiorchen/treetracker-web-map-client/commit/705b8b0ac292a4d543b8e13a59b45f720f903b8e)) -* menubar handle click function on mobile screen ([ed90f71](https://github.com/dadiorchen/treetracker-web-map-client/commit/ed90f71b83dda210c28ebf258242cf0bb5a9150b)) -* merge conflict ([54269f8](https://github.com/dadiorchen/treetracker-web-map-client/commit/54269f8214dd17733b187dfd2451a6f980a7f36a)) -* merge conflicts ([b9990ce](https://github.com/dadiorchen/treetracker-web-map-client/commit/b9990ce6a6967881fc2c344f089263e58c3bc672)) -* merge cwm ([dd2286d](https://github.com/dadiorchen/treetracker-web-map-client/commit/dd2286d8b9cc5fa993bb5fe569c1f24546b5e048)) -* merge syntax error ([b926f63](https://github.com/dadiorchen/treetracker-web-map-client/commit/b926f63f014600b679afe3274b433d64e4e217c7)) -* merge syntax errors ([2c2454f](https://github.com/dadiorchen/treetracker-web-map-client/commit/2c2454f3337ceff989a541789a9ff277e693c042)) -* merged conflicts ([b79ed9f](https://github.com/dadiorchen/treetracker-web-map-client/commit/b79ed9fa7c3f989d052ac2b2169d959edd3f243f)) -* mergin conflicts ([ef137d1](https://github.com/dadiorchen/treetracker-web-map-client/commit/ef137d1e2a6e3fe9f70661b9f49dfa84d39027ec)) -* miss-aligned text ([74b4167](https://github.com/dadiorchen/treetracker-web-map-client/commit/74b41676661316804f0ad7ddf26a1a39690a1f7a)) -* missed slash ([1e8d6a4](https://github.com/dadiorchen/treetracker-web-map-client/commit/1e8d6a47bc8cfecc59df39d58d16c509bd11da92)) -* missing flags for 2 countries added back ([338bcb0](https://github.com/dadiorchen/treetracker-web-map-client/commit/338bcb0dbf016de47b5b993c473a844f490ecc57)) -* missing icon for token page ([b855a31](https://github.com/dadiorchen/treetracker-web-map-client/commit/b855a312ba547f12a3934ba750c816f9c98221e7)) -* missing speciss name in token page ([5a8ad38](https://github.com/dadiorchen/treetracker-web-map-client/commit/5a8ad3882216830f1bc3450ea876f92ab7b77246)) -* mission style ([b3c9898](https://github.com/dadiorchen/treetracker-web-map-client/commit/b3c9898b2e0ab579ce5f07acaa2e0ea156df8e08)) -* more adjustments ([baa7f31](https://github.com/dadiorchen/treetracker-web-map-client/commit/baa7f31d94d593928e43a5ffaf49de332fdd458a)) -* move message location ([32f9ce3](https://github.com/dadiorchen/treetracker-web-map-client/commit/32f9ce3f5591f5906f42b9dbea5217709202be01)) -* navbar image imports ([de8a411](https://github.com/dadiorchen/treetracker-web-map-client/commit/de8a41160d44544b46d1636579707e5a47f550ce)) -* navigate to top of the page on route change ([19516e4](https://github.com/dadiorchen/treetracker-web-map-client/commit/19516e495f3115e72cec4b5d6ee841a07a101332)) -* new data structure issues ([f9ade81](https://github.com/dadiorchen/treetracker-web-map-client/commit/f9ade81d9925332d7e9e4c6452fc44ea70125af2)) -* next build ([8865544](https://github.com/dadiorchen/treetracker-web-map-client/commit/88655448736934743ea59b05743fc2ecded09acc)) -* next.js setting ([c5b4459](https://github.com/dadiorchen/treetracker-web-map-client/commit/c5b4459cb5752a4e76dce038f635b3ded7723ea0)) -* no data on emebed home page ([fda09c8](https://github.com/dadiorchen/treetracker-web-map-client/commit/fda09c89d5d0b9a5254a30650c7699de958a2b21)) -* no org error case ([d5698d2](https://github.com/dadiorchen/treetracker-web-map-client/commit/d5698d29507342332fffba8edbb17333cd525bba)) -* no planter logo on embed ([7361d55](https://github.com/dadiorchen/treetracker-web-map-client/commit/7361d55c4d6f5735fd7059c21ac6194db035fe2d)) -* nock persist ([597a2be](https://github.com/dadiorchen/treetracker-web-map-client/commit/597a2bef4d660c38df12ee52960ff0eff13339ff)) -* number on map ([dfd99e1](https://github.com/dadiorchen/treetracker-web-map-client/commit/dfd99e163849e22cccc7ce731eeaeef270377f94)) -* number on planter page ([1300d8c](https://github.com/dadiorchen/treetracker-web-map-client/commit/1300d8ccf8a60a7ce3916cca81751ee6b7acf0c6)) -* open leader board for dev ([72da9c8](https://github.com/dadiorchen/treetracker-web-map-client/commit/72da9c85b276747c00e5f5ae7b54932f6c8a6994)) -* org map ([d016232](https://github.com/dadiorchen/treetracker-web-map-client/commit/d01623227f5611772da50b0ded4803424b85059d)) -* overlap on leaderboard ([7d56185](https://github.com/dadiorchen/treetracker-web-map-client/commit/7d56185315f86345f1b9422827dced20041dad04)) -* overlay folder name [skip ci] ([68b36ee](https://github.com/dadiorchen/treetracker-web-map-client/commit/68b36ee5614b36124beed1522edc79d56f56c599)) -* page flash ([e3493d4](https://github.com/dadiorchen/treetracker-web-map-client/commit/e3493d42489c8ccf3c1f29d037dad55006c90418)) -* pages layout for drawer ([58a4a5e](https://github.com/dadiorchen/treetracker-web-map-client/commit/58a4a5e0a84eb7a4b6028530aec16c5e8cf81a06)) -* pass link prop for wallets ([05056d9](https://github.com/dadiorchen/treetracker-web-map-client/commit/05056d9605e3b8873e0a527e0d3801da83d2c5bc)) -* passed isMobile prop from parent to the respective component ([3957e10](https://github.com/dadiorchen/treetracker-web-map-client/commit/3957e104bfd56094baa98784cda55bfd4ae95fe5)) -* path base problem ([7d840da](https://github.com/dadiorchen/treetracker-web-map-client/commit/7d840da84a0dcf6655b6237abe03b7602d8220a9)) -* path resolver unit tests ([2d5be26](https://github.com/dadiorchen/treetracker-web-map-client/commit/2d5be263fc4f10b5a0dc6ef86978208ba650da8f)) -* pathname regex causing 404s ([9fd313b](https://github.com/dadiorchen/treetracker-web-map-client/commit/9fd313b35b93b33d58d844d991b27f95ea74475f)) -* pathResolver support query params ([4e6140f](https://github.com/dadiorchen/treetracker-web-map-client/commit/4e6140f5a366e38d679f27aabc315d38d68f4265)) -* planter incorrect image rotation at organization page ([2b417b8](https://github.com/dadiorchen/treetracker-web-map-client/commit/2b417b802b73073536bd6a56569048ed81e2c8d9)) -* planter link on top page ([83bdf2d](https://github.com/dadiorchen/treetracker-web-map-client/commit/83bdf2dd9212ab129688c401ba94b4de0d0a77eb)) -* planter quote location issue ([2e9dc3b](https://github.com/dadiorchen/treetracker-web-map-client/commit/2e9dc3b5685436f96f4ca46f0e161168c3b369ae)) -* **planter-quote:** layout not conform design ([cd77800](https://github.com/dadiorchen/treetracker-web-map-client/commit/cd77800c0eca5733432bc52ec168b013c42707bd)) -* **planter:** image rotation incorrect ([5de1b3b](https://github.com/dadiorchen/treetracker-web-map-client/commit/5de1b3b6b4951a104e75d226695b2b189a2e127f)) -* **planter:** null gives invalid css value ([9ef7b7f](https://github.com/dadiorchen/treetracker-web-map-client/commit/9ef7b7fb2ad51ed46f99ee70609806f8196ec46c)) -* **playground:** custom fonts not first if loaded from storage ([43660b7](https://github.com/dadiorchen/treetracker-web-map-client/commit/43660b7dca0c7da30b70e4bfb57e281007ce353c)) -* **playground:** custom fonts not showing on preview ([a1e554d](https://github.com/dadiorchen/treetracker-web-map-client/commit/a1e554d2dff1aa24ab90685827cd0aa4a491d036)) -* **playground:** font weights are stored as number and string causing for duplication ([337e49b](https://github.com/dadiorchen/treetracker-web-map-client/commit/337e49b1fab0b71f1364d494d212eead1f3a80cf)) -* **playground:** iframe border ([ce5d618](https://github.com/dadiorchen/treetracker-web-map-client/commit/ce5d6180debcbaa5ed0afa5396001cddb168eadb)) -* **playground:** iframe not working on live dev/prod env ([6960021](https://github.com/dadiorchen/treetracker-web-map-client/commit/6960021de299a8221a760f6abbf71df033b14c2d)) -* **playground:** preview button not working ([4be399c](https://github.com/dadiorchen/treetracker-web-map-client/commit/4be399c270f517258c5772e99f5b46743771429d)) -* **playground:** prop values incorrect on startup ([2679e5a](https://github.com/dadiorchen/treetracker-web-map-client/commit/2679e5a5c07beb79e810d5fe4a4d133576b6a6a5)) -* **playground:** runtime error prop dark ([3092fb6](https://github.com/dadiorchen/treetracker-web-map-client/commit/3092fb6e6f9d3d71271b1175a3457f84b6265fea)) -* **playground:** runtime error prop dark ([b344819](https://github.com/dadiorchen/treetracker-web-map-client/commit/b3448199be0e813c9af90177a5b073b3e444f000)) -* **playground:** skip gradient validation ([82bb7af](https://github.com/dadiorchen/treetracker-web-map-client/commit/82bb7af8f093f65222e5976bac69fa647ea40adc)) -* **playground:** spacing not in custom theme ([f58af00](https://github.com/dadiorchen/treetracker-web-map-client/commit/f58af00c8a1e7b56bebe994cdf78565bc0c90fad)) -* **playground:** temp theme [#672](https://github.com/dadiorchen/treetracker-web-map-client/issues/672) ([2cf398e](https://github.com/dadiorchen/treetracker-web-map-client/commit/2cf398e2acc4a734d5d3df685b02bfbe9db5eb6c)) -* **playground:** textarea not updating theme values ([52a7cc5](https://github.com/dadiorchen/treetracker-web-map-client/commit/52a7cc5b0012075186af871b7a7c27e84a1bed81)) -* **playground:** update tests according to new implementation ([bc9a999](https://github.com/dadiorchen/treetracker-web-map-client/commit/bc9a999c250a761e058ab65288f6272eeba8eb2e)) -* problem in path resolver ([e274166](https://github.com/dadiorchen/treetracker-web-map-client/commit/e274166e192d12b03bc7d9aea2ff50542e23d31c)) -* push docker ([817e6b2](https://github.com/dadiorchen/treetracker-web-map-client/commit/817e6b2ebc1112e85f22754879aae2dc7fc98686)) -* range in release rc ([87ee4ba](https://github.com/dadiorchen/treetracker-web-map-client/commit/87ee4ba0ab3eac16097cd4049bfdff1617ccc6c7)) -* range in release rc ([cfda759](https://github.com/dadiorchen/treetracker-web-map-client/commit/cfda759dd5d94fe0edbd4f1c42db6840b5ffc024)) -* react prop warning ([6758bcd](https://github.com/dadiorchen/treetracker-web-map-client/commit/6758bcd903babb670f3e261f3024366040b5c073)) -* react prop warning ([6bb838e](https://github.com/dadiorchen/treetracker-web-map-client/commit/6bb838e43728e2a572d9ce04c18102ad3118f27d)) -* react sx prop warning ([f562671](https://github.com/dadiorchen/treetracker-web-map-client/commit/f562671464f7fe7d951d2b48eead108d91e353a1)) -* react unique key warning ([2660cf5](https://github.com/dadiorchen/treetracker-web-map-client/commit/2660cf52edf8fb36d469ce98fffd58ac242246d9)) -* readme wsl instructions for cypress ([a605a98](https://github.com/dadiorchen/treetracker-web-map-client/commit/a605a98a754ee556f6a1d04b6d4db9ff6b68dc5f)) -* rebase conflict ([ecccd32](https://github.com/dadiorchen/treetracker-web-map-client/commit/ecccd325aa17cb3dcc2c4ca9a17dc3710898e4ad)) -* refactored code ([193347c](https://github.com/dadiorchen/treetracker-web-map-client/commit/193347cd670e869fff992070a2c05dbec192ba8b)) -* refine planter image [#463](https://github.com/dadiorchen/treetracker-web-map-client/issues/463) ([8a6126f](https://github.com/dadiorchen/treetracker-web-map-client/commit/8a6126f10730a709b1de921a8d7afce7cc9d0bd9)) -* reformat code ([1348328](https://github.com/dadiorchen/treetracker-web-map-client/commit/134832898425a55788d27e930c2a0e0cc5a04ee2)) -* release test ([499f7ee](https://github.com/dadiorchen/treetracker-web-map-client/commit/499f7eec6aac3a25395063eb4c2fba54bbfc0701)) -* release test ([aeb6c4f](https://github.com/dadiorchen/treetracker-web-map-client/commit/aeb6c4f5d5e186c79114031dee20deb6dbc990ff)) -* release test ([9638de1](https://github.com/dadiorchen/treetracker-web-map-client/commit/9638de1a2b6b22d82c7646ae7f8a3e20c959839e)) -* remove redundant test ([3ab6ad7](https://github.com/dadiorchen/treetracker-web-map-client/commit/3ab6ad784d373ee08e95e5fbda5e809ac0af31a0)) -* remove 'boxSizing' from 'noBackground' ([9aeed48](https://github.com/dadiorchen/treetracker-web-map-client/commit/9aeed48846a25e476fcc82e376973f6ea8a3816a)) -* remove abbreviate number from organization page ([03ce1c9](https://github.com/dadiorchen/treetracker-web-map-client/commit/03ce1c9b27b5deccbb89297c2f172b5ee031391f)) -* remove border from card ([932832f](https://github.com/dadiorchen/treetracker-web-map-client/commit/932832f734520bc041c6ea5b5f156d446e30e85b)) -* remove conditional ([0bcdbeb](https://github.com/dadiorchen/treetracker-web-map-client/commit/0bcdbeb162518291a896cd943c45877fb5793082)) -* remove div nested in p ([6beccd0](https://github.com/dadiorchen/treetracker-web-map-client/commit/6beccd03ab8d51b20edcd054f8757d56bec3047e)) -* remove extra addition of prefix ([069db75](https://github.com/dadiorchen/treetracker-web-map-client/commit/069db7502672a8f2ab9ab04e29f2d29bd2eca076)) -* remove formatDisplayDates ([f28c94a](https://github.com/dadiorchen/treetracker-web-map-client/commit/f28c94a0a043c8238eb745e7d0a2b313a635ff31)) -* remove icon from deprecated component ([6b479ee](https://github.com/dadiorchen/treetracker-web-map-client/commit/6b479ee98e4166acad2223853de40e140e0d68de)) -* remove impact section ([2346e71](https://github.com/dadiorchen/treetracker-web-map-client/commit/2346e715687b9ff881ce0f91ba8869f638b6484f)) -* remove passhref prop ([24e5a3b](https://github.com/dadiorchen/treetracker-web-map-client/commit/24e5a3b9d550d3ba6cc26e56918205dba960cc6d)) -* remove scientific name from the card ([e8e0311](https://github.com/dadiorchen/treetracker-web-map-client/commit/e8e0311ac3c77060ee020e01a8d70a6559dd81bb)) -* remove setstartdate / setenddate ([9c93a3c](https://github.com/dadiorchen/treetracker-web-map-client/commit/9c93a3cacb5ab420bb87d8cb07e64a27e570d8f7)) -* remove showmessage ([01d082f](https://github.com/dadiorchen/treetracker-web-map-client/commit/01d082f0012202f0f9f398a4673c7f016ead87ff)) -* remove the map bounds url update for now ([87fda83](https://github.com/dadiorchen/treetracker-web-map-client/commit/87fda83281339ee141fa88d39d937dea3a519c0d)) -* remove title / typography ([15d5cc5](https://github.com/dadiorchen/treetracker-web-map-client/commit/15d5cc5c7653c3e0d10e423fb0488eef7e8b75f4)) -* remove tooltip and add name ([92dae04](https://github.com/dadiorchen/treetracker-web-map-client/commit/92dae040e3ba029beaeaf0d65253d26373f7286f)) -* remove top page fix ([edf99b4](https://github.com/dadiorchen/treetracker-web-map-client/commit/edf99b493071e4ac64af714efb830d1aea5e3f4f)) -* remove underline below planter name ([13b7769](https://github.com/dadiorchen/treetracker-web-map-client/commit/13b776914b8f6fe068a5e63744d25d7dda4d9eef)) -* remove underscore style from Link component ([3c48be7](https://github.com/dadiorchen/treetracker-web-map-client/commit/3c48be7e4da2a37c0540f29aaf97a007b65456c0)) -* remove unnecessary links ([04d428a](https://github.com/dadiorchen/treetracker-web-map-client/commit/04d428a0e1dbc2d58e604b6a8cf5f367dc6ff963)) -* remove unused styles ([24300de](https://github.com/dadiorchen/treetracker-web-map-client/commit/24300de153476ab57ac5e76b29a45e09726b28fc)) -* remove unused test ([380cc0a](https://github.com/dadiorchen/treetracker-web-map-client/commit/380cc0a5534938bd4d8d369ee4aaf6dc02d47dd3)) -* remove useless code ([d492f36](https://github.com/dadiorchen/treetracker-web-map-client/commit/d492f36f19332b7a4bf180b90bc933304de4de55)) -* remove useless code ([3f8ed2d](https://github.com/dadiorchen/treetracker-web-map-client/commit/3f8ed2d8b37fc50f2fa7a41c000124af4a1d9cfa)) -* remove yarn.lock file ([52cb787](https://github.com/dadiorchen/treetracker-web-map-client/commit/52cb787f5af5ec99c611d7760fbc1b77b994544e)) -* remove zoom control panel [#93](https://github.com/dadiorchen/treetracker-web-map-client/issues/93) ([7eabb42](https://github.com/dadiorchen/treetracker-web-map-client/commit/7eabb42ff3fbc44aefdcf90c48d5a75dfae2fb6d)) -* removed absolute positioning ([606a683](https://github.com/dadiorchen/treetracker-web-map-client/commit/606a6838c353a368ebd2b31ed6da2e1823704fde)) -* removed cache from token page ([84a504b](https://github.com/dadiorchen/treetracker-web-map-client/commit/84a504b8264d156125feb2f5197548465843b97a)) -* removed fallback ([f12da4c](https://github.com/dadiorchen/treetracker-web-map-client/commit/f12da4ce51a43ddbf58e187737bb1b036c2dc577)) -* removed my console.log ([8a30185](https://github.com/dadiorchen/treetracker-web-map-client/commit/8a30185098ca0b7c84461aa5669eef12fff738d3)) -* removed unnecarry styling and components ([473562e](https://github.com/dadiorchen/treetracker-web-map-client/commit/473562ef8bad3821fcbd7cedb861aa529d273163)) -* removed unused import and made tooltip text dynamic ([5a6f51b](https://github.com/dadiorchen/treetracker-web-map-client/commit/5a6f51b9d43a85ee855682531a43e969d5778290)) -* removed useless style ([1183877](https://github.com/dadiorchen/treetracker-web-map-client/commit/11838777119107e25d1a25da285f475c2fa14bd3)) -* rename deploy yaml ([4c1058d](https://github.com/dadiorchen/treetracker-web-map-client/commit/4c1058d7aa79350fbb654617c1ffcf82c6572365)) -* rename treeimage to customimagewrapper ([8997eca](https://github.com/dadiorchen/treetracker-web-map-client/commit/8997eca9699c4e897035266281980c58e2174344)) -* rename treeimage to customimagewrapper ([64b55e5](https://github.com/dadiorchen/treetracker-web-map-client/commit/64b55e54118a75e52cc03dc6edbab9f03af0262d)) -* repeated forward slash in href ([3ebc3c0](https://github.com/dadiorchen/treetracker-web-map-client/commit/3ebc3c09076687edfb7ba0eb6873e289ec145a77)) -* replace a tag with Link component ([c94af26](https://github.com/dadiorchen/treetracker-web-map-client/commit/c94af2642410c1a67dfd9ae402f64f2842902f04)) -* replace flex with inline-flex ([9129c68](https://github.com/dadiorchen/treetracker-web-map-client/commit/9129c68601d744aea4a033a8e1bbc0d97402dafa)) -* replace hardcoded continent value for CustomWorldMap ([8f5b3df](https://github.com/dadiorchen/treetracker-web-map-client/commit/8f5b3dfee19ccc1ce56fe98bc415d9dc773973b7)) -* replace makestyles ([fe0fbd1](https://github.com/dadiorchen/treetracker-web-map-client/commit/fe0fbd1af04dfdccd41b7b59d9d5b12fe76c54f0)) -* replace string prop with date and format it ([f08a9df](https://github.com/dadiorchen/treetracker-web-map-client/commit/f08a9dfbef1b2ba66d247ede141fd5ad3004fb9b)) -* replace the fallbacks image in the information card with a logo [#1331](https://github.com/dadiorchen/treetracker-web-map-client/issues/1331) ([3713a80](https://github.com/dadiorchen/treetracker-web-map-client/commit/3713a8053e4dfa0c3b1b91cc3607eb0209aa7fac)) -* replace useStyles ([045f426](https://github.com/dadiorchen/treetracker-web-map-client/commit/045f4267c61fa7052d66f82e89bf4c4f355fadf5)) -* replace withStyles ([7a147f5](https://github.com/dadiorchen/treetracker-web-map-client/commit/7a147f554e11f28a87cd37417e6ffcc9b0e7ea5a)) -* replaced mount with mountWithTheme ([32ad800](https://github.com/dadiorchen/treetracker-web-map-client/commit/32ad800288ee54c50da134d40655163750ba9aff)) -* replaced next/Link with custom Link ([9785748](https://github.com/dadiorchen/treetracker-web-map-client/commit/9785748f0a5647c3016b591e003b74ed1815f88e)) -* replaced scatter embed check fxs ([dd83b50](https://github.com/dadiorchen/treetracker-web-map-client/commit/dd83b501937c2ac497fcc75d2c9d6bccdab02e4c)) -* replaced unrelevant keys in unit tests ([1b45b82](https://github.com/dadiorchen/treetracker-web-map-client/commit/1b45b82cd75a4cef4a99b531646f12fc60813941)) -* resolve merge conflicts ([50c35c5](https://github.com/dadiorchen/treetracker-web-map-client/commit/50c35c54dcd4341e187ece47eb14b396a86a55bd)) -* resolving conflict ([8dc98b2](https://github.com/dadiorchen/treetracker-web-map-client/commit/8dc98b290cf70eb8a0630f1e45943e036de5dcfe)) -* restore change log ([844e7ed](https://github.com/dadiorchen/treetracker-web-map-client/commit/844e7ed497fb41a9cee6326a965673b7bf737eb3)) -* restore city namp on the map ([9f03928](https://github.com/dadiorchen/treetracker-web-map-client/commit/9f039289d2a0855fde6d4d40e09249ac3a6de0da)) -* restore https://github.com/Greenstand/treetracker-web-map-api/pull/300/files ([8f8cc8c](https://github.com/dadiorchen/treetracker-web-map-client/commit/8f8cc8c56f4f084f1fe48b88a0800d0b51628287)) -* restore https://github.com/Greenstand/treetracker-web-map-api/pull/304/files ([6c545c8](https://github.com/dadiorchen/treetracker-web-map-client/commit/6c545c84bd5b9ebc7fda5f1dace70a420b353c23)) -* restore village name ([546b5e0](https://github.com/dadiorchen/treetracker-web-map-client/commit/546b5e01fb55b6a5a4c48fbae6ab04401a3f9dd2)) -* return truncated token id from UUIDTag component ([85968b0](https://github.com/dadiorchen/treetracker-web-map-client/commit/85968b0ef6c615a1600573708a6956b38a35c1fc)) -* revalidation return ([b2748b6](https://github.com/dadiorchen/treetracker-web-map-client/commit/b2748b6b8afff89f8238815548eaf9d016f327e7)) -* revert changelog changes ([958a7eb](https://github.com/dadiorchen/treetracker-web-map-client/commit/958a7eb40ca786e3f41599b05416c7fbef68cc8b)) -* revert flex changes ([3abc97d](https://github.com/dadiorchen/treetracker-web-map-client/commit/3abc97d014ef1bf863bc3d0db46309d519300cbe)) -* revert prev commit ([3d26a90](https://github.com/dadiorchen/treetracker-web-map-client/commit/3d26a90d22cad0202ffd9f214e7e4b1b2dfd840d)) -* root path not working on different envs ([b0dbc38](https://github.com/dadiorchen/treetracker-web-map-client/commit/b0dbc381ff10450d156f5425e2bd8beb0421d8e1)) -* run it [skip ci] ([0133e2a](https://github.com/dadiorchen/treetracker-web-map-client/commit/0133e2ae3aaec2a53a918ca0211e5ce447c61c60)) -* run useeffect on state change ([a89159c](https://github.com/dadiorchen/treetracker-web-map-client/commit/a89159cca2764f9f1a818185ea640a882ef88b9c)) -* second scrollbar embed pages ([4c656ca](https://github.com/dadiorchen/treetracker-web-map-client/commit/4c656ca06c78e8defdb7337d8903c1ba1e89e36d)) -* security audit ([06bbf97](https://github.com/dadiorchen/treetracker-web-map-client/commit/06bbf97c7ac430226666bf24c3f41467f793f5a3)) -* security warnings ([f7ec996](https://github.com/dadiorchen/treetracker-web-map-client/commit/f7ec996f4d1df2f98d54464c8f5878ee39a59527)) -* set 'mt' value to 0 and remove unused variables ([9d8d299](https://github.com/dadiorchen/treetracker-web-map-client/commit/9d8d299f9e805b70c54722a701b9cbab5b6ae436)) -* setting for dev ([2f95158](https://github.com/dadiorchen/treetracker-web-map-client/commit/2f951583180f5b2645f4fe9ac8b1b618a208dff4)) -* setting for dev ([e9d3893](https://github.com/dadiorchen/treetracker-web-map-client/commit/e9d3893df3055f5f384b76dc0069f36418bf72e3)) -* setting for env of k8s ([b25568b](https://github.com/dadiorchen/treetracker-web-map-client/commit/b25568b1f629def8491c568f59c6b62509d7a302)) -* share button styles and fix ([ae618c9](https://github.com/dadiorchen/treetracker-web-map-client/commit/ae618c915b75de3bdac091b638a267e8648c011c)) -* **sharebutton:** added onClick to CustomShareIcon ([c2580e6](https://github.com/dadiorchen/treetracker-web-map-client/commit/c2580e65b835d6e94c51af4c085f670d8da67209)) -* shortened gps location numbers ([de93099](https://github.com/dadiorchen/treetracker-web-map-client/commit/de930997b9d3dfeb65276870833467dd10ccebee)) -* show date error on expand screen ([1515802](https://github.com/dadiorchen/treetracker-web-map-client/commit/15158024cf1ce03208b656b23fa48b2ce5b265a9)) -* single tree with map data ([5efb886](https://github.com/dadiorchen/treetracker-web-map-client/commit/5efb886c3937b947780ca63a61744764753e479c)) -* slash problem ([63dfc79](https://github.com/dadiorchen/treetracker-web-map-client/commit/63dfc79b4bb1fc9073c3fcd56533059494ccc0bb)) -* slash problem ([6ba345e](https://github.com/dadiorchen/treetracker-web-map-client/commit/6ba345eda825b5e73a5a5db78c7fd9b7d80fdb8a)) -* solve conflicts ([0e992f3](https://github.com/dadiorchen/treetracker-web-map-client/commit/0e992f3feb92c78cf7c98a2fdf1d8b3bcfc2419d)) -* solving merge conflicts ([bee0265](https://github.com/dadiorchen/treetracker-web-map-client/commit/bee0265d12a34f2970c76ab9d82c821a3f5a39d3)) -* some fine tuning and fix test cases ([e494c13](https://github.com/dadiorchen/treetracker-web-map-client/commit/e494c13892240a01be0c27b0199b03fff5c83722)) -* some page layout ([3afaa7a](https://github.com/dadiorchen/treetracker-web-map-client/commit/3afaa7ac8cdd41fcd13a46383cea324a4773d94b)) -* sort out utf lib name; ([75adc6a](https://github.com/dadiorchen/treetracker-web-map-client/commit/75adc6a09f05572daad0dd05945279f7f1e72b1f)) -* sort out utf lib name; ([779eebf](https://github.com/dadiorchen/treetracker-web-map-client/commit/779eebfdfdac04c048939ceda4377620f8e29129)) -* species component no key ([93c489c](https://github.com/dadiorchen/treetracker-web-map-client/commit/93c489c69ef125c190ecf903ed1387bdb5b0465f)) -* species desc on wallet page ([f8b7c27](https://github.com/dadiorchen/treetracker-web-map-client/commit/f8b7c2744fef271c13c7176b326dc1ad74b5126e)) -* svg graph fixed height ([e9d41f8](https://github.com/dadiorchen/treetracker-web-map-client/commit/e9d41f87a4b3d03cd781b6c15f0187bf0bc34499)) -* svg improvements ([9145815](https://github.com/dadiorchen/treetracker-web-map-client/commit/9145815ec2b24a092a8fc9a60a2f4ee03f30eb92)) -* swipeabledrawer ([369de38](https://github.com/dadiorchen/treetracker-web-map-client/commit/369de3801793e181826fb56b0e4f59370e659b8d)) -* swtich to https to install core ([3163d07](https://github.com/dadiorchen/treetracker-web-map-client/commit/3163d07b19c36feb1f506fb24261fa1d0ab05852)) -* tagchips color not compatible custom theme ([f23c2af](https://github.com/dadiorchen/treetracker-web-map-client/commit/f23c2af1e8e25d873f8448ed71b12ffd175c8003)) -* talked about changes ([0b7454f](https://github.com/dadiorchen/treetracker-web-map-client/commit/0b7454f4f8063b7f91c9670dabfb8daf8eee3bcb)) -* test ([c631bbb](https://github.com/dadiorchen/treetracker-web-map-client/commit/c631bbb473d31ea5e065c919be9e4ed3803ac26d)) -* test ([adb9867](https://github.com/dadiorchen/treetracker-web-map-client/commit/adb9867a5f4bce9b1e23917640062f043ad50675)) -* test ([eecb1d8](https://github.com/dadiorchen/treetracker-web-map-client/commit/eecb1d84960c4f74f7705467a49eca94c470303b)) -* test failed because of filter default status changed ([8e09c82](https://github.com/dadiorchen/treetracker-web-map-client/commit/8e09c82bf894a4aaebb7ebe597be6460209af719)) -* test not working with new copy button ([6887aa3](https://github.com/dadiorchen/treetracker-web-map-client/commit/6887aa35dadad174a19e2fd80ff831986023065c)) -* text ([cc9500a](https://github.com/dadiorchen/treetracker-web-map-client/commit/cc9500ab2f445986d62c5855888f9f5c0c569c16)) -* the aerial image would cover the cluster points ([6bf609e](https://github.com/dadiorchen/treetracker-web-map-client/commit/6bf609ee2902389ee4b51ef064cc290cb6bf8eb9)) -* the aerial image would cover the cluster points ([45eda86](https://github.com/dadiorchen/treetracker-web-map-client/commit/45eda86f786bf9a97a03f5db692b3ace81c2f788)) -* the zoom button disabled in some cases [#619](https://github.com/dadiorchen/treetracker-web-map-client/issues/619) ([7cf746b](https://github.com/dadiorchen/treetracker-web-map-client/commit/7cf746bc97337fcd6e138fbc05788833edc04691)) -* the zoom button disabled in some cases [#619](https://github.com/dadiorchen/treetracker-web-map-client/issues/619) ([61acd63](https://github.com/dadiorchen/treetracker-web-map-client/commit/61acd63abe5451ba6b8a8d430a60e355408468f3)) -* the zoom button disabled in some cases [#619](https://github.com/dadiorchen/treetracker-web-map-client/issues/619) ([20b24a3](https://github.com/dadiorchen/treetracker-web-map-client/commit/20b24a3c28b3b2d5d09afc6719a157fe0d322aeb)) -* the zoom button disabled in some cases [#619](https://github.com/dadiorchen/treetracker-web-map-client/issues/619) ([2730465](https://github.com/dadiorchen/treetracker-web-map-client/commit/2730465d028a1d8f11e704ac93d27f9a3fdf20df)) -* theme changes ([b307ef5](https://github.com/dadiorchen/treetracker-web-map-client/commit/b307ef5f3eedc5682486bdde7cbed96fbaa84507)) -* theme mode toggle ([5239fa6](https://github.com/dadiorchen/treetracker-web-map-client/commit/5239fa6e99f1c2ef0fcdc950408f2c51628c7dcf)) -* time override & add to top ([520f537](https://github.com/dadiorchen/treetracker-web-map-client/commit/520f5374c46d552832dbc407674150f33f4c106e)) -* timeline appears on when expand button is clicked ([5781456](https://github.com/dadiorchen/treetracker-web-map-client/commit/57814563a69802fd7481089023ede569918b25cd)) -* timeline dark theme color incorrect ([92549f9](https://github.com/dadiorchen/treetracker-web-map-client/commit/92549f983eaa3d76e0241da2facf7e6bc98173a5)) -* timeline not correct position ([71903ac](https://github.com/dadiorchen/treetracker-web-map-client/commit/71903ac1f994409df40427734606889a39b2a581)) -* timeline not visible on home page ([5691e2c](https://github.com/dadiorchen/treetracker-web-map-client/commit/5691e2c83a02ae618b92d2f87049bc9844fb9211)) -* timeline router not working in test ([1f80dfc](https://github.com/dadiorchen/treetracker-web-map-client/commit/1f80dfce252a2f743a147105325174603629a1c4)) -* timeline test ([c98686e](https://github.com/dadiorchen/treetracker-web-map-client/commit/c98686e75a3e344c701fb2c5d1b0c4162a324fe2)) -* **timeline:** background color is not equal to navbar ([c4850d1](https://github.com/dadiorchen/treetracker-web-map-client/commit/c4850d1f529fe8b82026c690ccfb116947ab64f2)) -* **timeline:** double box component ([7961fc5](https://github.com/dadiorchen/treetracker-web-map-client/commit/7961fc544c76892a2bd199317feda266f17c4e9b)) -* tinkered style ([c7cf925](https://github.com/dadiorchen/treetracker-web-map-client/commit/c7cf925da7718231e3356cdc5dd240727db61b55)) -* tiny css problem [#552](https://github.com/dadiorchen/treetracker-web-map-client/issues/552) ([31f6329](https://github.com/dadiorchen/treetracker-web-map-client/commit/31f6329565986e6485416305e6a8a82685c55145)) -* token id not working on drawer ui ([40eae89](https://github.com/dadiorchen/treetracker-web-map-client/commit/40eae893f310e881d378f20a5a9329774a2fc87b)) -* **token:** test mock not providing planter id ([759f184](https://github.com/dadiorchen/treetracker-web-map-client/commit/759f1844cfd26eca88e71a9347a24df028b535c2)) -* **token:** token id too long in breadcrumb ([cf150a4](https://github.com/dadiorchen/treetracker-web-map-client/commit/cf150a4d9b7884593d64037d220c3b3f2099495f)) -* top cy ([2d4362c](https://github.com/dadiorchen/treetracker-web-map-client/commit/2d4362cc2bbdeaba549191a1961a6b73420d4f50)) -* top page logic ([f0d64b9](https://github.com/dadiorchen/treetracker-web-map-client/commit/f0d64b97e3bc854a71d90048ce234cc24a6782ed)) -* top.cy.js e2e test ([019d0e7](https://github.com/dadiorchen/treetracker-web-map-client/commit/019d0e7878b958d792662a5c1131f109c5ce5be6)) -* treat useEmbed as function ([be83717](https://github.com/dadiorchen/treetracker-web-map-client/commit/be83717c37574e9fa54195221e9e74d760b82f24)) -* tree badges are now dynamic ([ad06f73](https://github.com/dadiorchen/treetracker-web-map-client/commit/ad06f737550e70d8a656be5d20b0d068c7a1ae9d)) -* tree icon can now highlight ([2f92ddd](https://github.com/dadiorchen/treetracker-web-map-client/commit/2f92ddd3a2c34dc62ea0e1331d9bb0b4614c004b)) -* tree located in null ([5b31a18](https://github.com/dadiorchen/treetracker-web-map-client/commit/5b31a18aa4e0919a8382e2daadf0012320df1ba1)) -* tree name case can not zoom in ([7dbe64c](https://github.com/dadiorchen/treetracker-web-map-client/commit/7dbe64cf77d5c5d6e5cb6d987fa8084e571af1ba)) -* tree page can not click tree ([caa199a](https://github.com/dadiorchen/treetracker-web-map-client/commit/caa199a3f14b39f6f515e2c2467eaf8b7419a3af)) -* **tree:** fixed a typo ([80c012d](https://github.com/dadiorchen/treetracker-web-map-client/commit/80c012d46215951acd702d944877b6ea8e4039b9)) -* **tree:** fixed rotation problem ([36f22c6](https://github.com/dadiorchen/treetracker-web-map-client/commit/36f22c6f0a362d94209d5d1d97feefdaa3e8443b)) -* treeid page test ([11db655](https://github.com/dadiorchen/treetracker-web-map-client/commit/11db6555a0ef1e9fbe01d1a6df4886796a0aedee)) -* treeid=xxx fails ([412f424](https://github.com/dadiorchen/treetracker-web-map-client/commit/412f4246fa6e8cfa0e8de1fe8bf2c4d8a6ccc737)) -* **tree:** make global icon consistent with others ([a97f93f](https://github.com/dadiorchen/treetracker-web-map-client/commit/a97f93f4dd1e70a5e59858ec656e528caf7e9656)) -* treepage map can not load correctly ([2036baa](https://github.com/dadiorchen/treetracker-web-map-client/commit/2036baac5c542ef04ba59ab5d46093a45255a66c)) -* trigger ([8f9c4d4](https://github.com/dadiorchen/treetracker-web-map-client/commit/8f9c4d45e4bc5b1700979184eb29e605e2547a62)) -* trigger ([970f7b7](https://github.com/dadiorchen/treetracker-web-map-client/commit/970f7b765a09da9b534c18a19541a5c31bb4cc59)) -* trigger ([3a82d03](https://github.com/dadiorchen/treetracker-web-map-client/commit/3a82d03f47b71cb4f9355d68218a223b8146db62)) -* trigger ([c0ae551](https://github.com/dadiorchen/treetracker-web-map-client/commit/c0ae551b11a8b7b33e1ad917dbc9b1c65845dc64)) -* trigger ([d57675f](https://github.com/dadiorchen/treetracker-web-map-client/commit/d57675fe39182eb076bc70b9b9eda7e4628f455e)) -* trigger ([02e3f2d](https://github.com/dadiorchen/treetracker-web-map-client/commit/02e3f2d64bd66e8588eae1f10c2eb62f99ee47a8)) -* trigger release ([7e88dbe](https://github.com/dadiorchen/treetracker-web-map-client/commit/7e88dbe15af5c02770bec7d068a8c2644345b3e8)) -* typo ([92ac507](https://github.com/dadiorchen/treetracker-web-map-client/commit/92ac5073373144cbf457e54eba78fc26d0a2bfa0)) -* typo ([3d3942e](https://github.com/dadiorchen/treetracker-web-map-client/commit/3d3942ef4749e2e45cfe8a1cf70f9eced4f8af13)) -* typo [skip ci] ([b8264c7](https://github.com/dadiorchen/treetracker-web-map-client/commit/b8264c71ffb435f80919d4fc9e5145a53c4ea961)) -* typo in issue template ([4523465](https://github.com/dadiorchen/treetracker-web-map-client/commit/452346516a0a6172e49acbc447d004c1464f6b99)) -* typo in README.md ([abfe36b](https://github.com/dadiorchen/treetracker-web-map-client/commit/abfe36bbb5bd08070fc6c01f7ed09b29852b2663)) -* typo on link ([6f2ad92](https://github.com/dadiorchen/treetracker-web-map-client/commit/6f2ad92b2d38e614accf01a4e7ceff6b668f7695)) -* typos ([96e64a3](https://github.com/dadiorchen/treetracker-web-map-client/commit/96e64a3f25e437016cd9db857933804e53d444db)) -* typot[skip ci] ([a9f7de7](https://github.com/dadiorchen/treetracker-web-map-client/commit/a9f7de7d11554fbf4f2513acf5629c39fb87a07d)) -* udpate drawer titles ([d1f2786](https://github.com/dadiorchen/treetracker-web-map-client/commit/d1f27869d7b7d12eb85cb0a2e144d480e1f8067c)) -* ui profile avatar ([348455a](https://github.com/dadiorchen/treetracker-web-map-client/commit/348455a5d90f0c9d991729c3d7aa9243864eb614)) -* **ui:** make the tree info dialog full screen on mobile ([b377530](https://github.com/dadiorchen/treetracker-web-map-client/commit/b3775308e5d7577bf4cd2b2cfc2cd47f5420afd3)) -* **ui:** theme dark background timeline button ([fe04e5c](https://github.com/dadiorchen/treetracker-web-map-client/commit/fe04e5ccee3910fb0f1f766e514bbfa56112463a)) -* unclickable of custom card ([9d5cfab](https://github.com/dadiorchen/treetracker-web-map-client/commit/9d5cfabb0d34fc4b80be1529f6cae69368764514)) -* undefined planter photo ([54efa53](https://github.com/dadiorchen/treetracker-web-map-client/commit/54efa53d0256263138c342b869700bf900eecf54)) -* undefined self ([c64b463](https://github.com/dadiorchen/treetracker-web-map-client/commit/c64b46392a4bb178754913244d316194dc524d41)) -* unit test broken ([f04459f](https://github.com/dadiorchen/treetracker-web-map-client/commit/f04459fc12ee2044272145ba5d15a2df36a1e314)) -* unit test path resolver ([e5941c5](https://github.com/dadiorchen/treetracker-web-map-client/commit/e5941c5cac1895411ac8cb63e92677ed656ed93e)) -* update dates picker ([bb836ef](https://github.com/dadiorchen/treetracker-web-map-client/commit/bb836ef7d438c05eeacf421d09e9fdc56ed7b414)) -* update background color of profile avatar ([4a026d9](https://github.com/dadiorchen/treetracker-web-map-client/commit/4a026d97b1305581a11b48b88870b4d5e454a6f6)) -* update component positioning ([43152b6](https://github.com/dadiorchen/treetracker-web-map-client/commit/43152b69b16b0cf1a65f16f9ee1a2f0f8886c43c)) -* update css for planter quote to be responsive when embed ([a6ffb8a](https://github.com/dadiorchen/treetracker-web-map-client/commit/a6ffb8ad493936afe2448816728213185a83ef7d)) -* update FeaturedTreesSlider component name ([0ba781f](https://github.com/dadiorchen/treetracker-web-map-client/commit/0ba781fbc79c7e99c2a7820f6f9c55be54bdb244)) -* update filter component ([668823e](https://github.com/dadiorchen/treetracker-web-map-client/commit/668823ecc819807924fc91591625afca91502929)) -* update icon color for better conntrast on dark mode ([2200355](https://github.com/dadiorchen/treetracker-web-map-client/commit/22003553cc6fd81d6bbb8f8cf81f83138a1620b4)) -* update informationCard CSS to match figma ([2234034](https://github.com/dadiorchen/treetracker-web-map-client/commit/22340344b0febac98b28463788ef5f95eac02050)) -* update jest tests ([e6fa736](https://github.com/dadiorchen/treetracker-web-map-client/commit/e6fa736b1f1f05b8e1bd4cd1f445c0dcd8253d17)), closes [#273](https://github.com/dadiorchen/treetracker-web-map-client/issues/273) -* update link color with theme mode ([4b03d99](https://github.com/dadiorchen/treetracker-web-map-client/commit/4b03d999e9dba05499c1ea842a083b5312a72128)) -* update lint-staged package ([e0e6c3f](https://github.com/dadiorchen/treetracker-web-map-client/commit/e0e6c3f31e3501ecd2e322e3ec58a1afdc037023)) -* update lock ([38d7a88](https://github.com/dadiorchen/treetracker-web-map-client/commit/38d7a8859e358ad4acfb61aa1304bac8ef7bf63c)) -* update map core ([45dc06f](https://github.com/dadiorchen/treetracker-web-map-client/commit/45dc06f03629b919bd5d6b6e30c336135b8380db)) -* update navbar tile and use value from array ([f5d19be](https://github.com/dadiorchen/treetracker-web-map-client/commit/f5d19be90f65a5820464162ce6d0a737175dc43e)) -* update styles ([5fff591](https://github.com/dadiorchen/treetracker-web-map-client/commit/5fff591acb2aa14d3d22e01f91a6270655b8d0cf)) -* update styles ([dc19a7b](https://github.com/dadiorchen/treetracker-web-map-client/commit/dc19a7b6cbbc94530651b422654d018cfbf8a844)) -* update styles ([9b5caf8](https://github.com/dadiorchen/treetracker-web-map-client/commit/9b5caf8e1087d78f9f020a772bb11a3e3e5c4ff5)) -* update styling as per Figma doc ([9b13779](https://github.com/dadiorchen/treetracker-web-map-client/commit/9b13779f7bcd0e7fd684b474cfe9c34a1b9199e8)) -* update treeSpecies to prevent it from breaking on smaller screens ([e4324ca](https://github.com/dadiorchen/treetracker-web-map-client/commit/e4324ca36f2bb89b35e97102e9f78f80b954a618)) -* update unit tests ([679b8ef](https://github.com/dadiorchen/treetracker-web-map-client/commit/679b8ef41cab56763aeb1994207d3b2b425cfcd4)) -* update urls manually using embed ([b62a7cd](https://github.com/dadiorchen/treetracker-web-map-client/commit/b62a7cde57fce1ff116bf906e2a69241f5064092)) -* updated axios for audit ([11ad013](https://github.com/dadiorchen/treetracker-web-map-client/commit/11ad013a6436b59ea728143b897c7cedcaaf711f)) -* updated engines within package that json to support node versions >= 16 ([51b517c](https://github.com/dadiorchen/treetracker-web-map-client/commit/51b517c353fc7fa8910f0d42b3dd4c900896362a)) -* updated husky and added lint-staged ([aa3006d](https://github.com/dadiorchen/treetracker-web-map-client/commit/aa3006d3be4388a633aabb060d652a2a5c8245f5)) -* updated mobile view ([23184b5](https://github.com/dadiorchen/treetracker-web-map-client/commit/23184b5506acf318821a6003087f8a04b8ae6227)) -* updated package.json ([91d10f1](https://github.com/dadiorchen/treetracker-web-map-client/commit/91d10f157d0fcb9033aacf24d3d3a13182a79068)) -* updated source-map-explorer for audit ([4509b47](https://github.com/dadiorchen/treetracker-web-map-client/commit/4509b470709f0160536fae6daeb8cbd4419c8ca6)) -* upgrade core to solve bug ([af4861e](https://github.com/dadiorchen/treetracker-web-map-client/commit/af4861ecce800073648fce4774d3171b126e0b69)) -* upgrade node v14 to v18 ([271d5af](https://github.com/dadiorchen/treetracker-web-map-client/commit/271d5afaa553806c15a55ce5862adba403a8e602)) -* use dev api ([480cde0](https://github.com/dadiorchen/treetracker-web-map-client/commit/480cde025e413d193dd5b8e7c732d8a73f727122)) -* use Link rather than Button ([625f948](https://github.com/dadiorchen/treetracker-web-map-client/commit/625f9482e4a795dee8a088644712da19cd356058)) -* use path resolver ([1242f11](https://github.com/dadiorchen/treetracker-web-map-client/commit/1242f116a7db82c235feca064e5425e648c4d4dc)) -* useLocation hook to select correct theme ([c45b3cd](https://github.com/dadiorchen/treetracker-web-map-client/commit/c45b3cd91953e950ddd7d04010443f54e1090777)) -* utils tests pass ([20288c0](https://github.com/dadiorchen/treetracker-web-map-client/commit/20288c0b69f72cf579da9e9cca7d370d480bafff)) -* v [skip ci] ([f0c1476](https://github.com/dadiorchen/treetracker-web-map-client/commit/f0c14763c4522597d75dae69a8575a31216fb1c4)) -* v [skip ci] ([7064044](https://github.com/dadiorchen/treetracker-web-map-client/commit/7064044b8f88954f9a617dabd6203d4e27bf40d5)) -* verified tree ([e68f580](https://github.com/dadiorchen/treetracker-web-map-client/commit/e68f580acc91990f31d884df4621d67d864d5bef)) -* wallet cy ([3a58a51](https://github.com/dadiorchen/treetracker-web-map-client/commit/3a58a51d7ec3f2240554066aec1bc18330248568)) -* window protect, image url fix ([b14f6b2](https://github.com/dadiorchen/treetracker-web-map-client/commit/b14f6b23b9945c40e06c2928ed1fe7b1720eeced)) -* workflow cypress video path ([bda9c10](https://github.com/dadiorchen/treetracker-web-map-client/commit/bda9c106aa3b71ac6807991d805c4247138dccdc)) -* wrong base for edit[skip ci] ([c570fdb](https://github.com/dadiorchen/treetracker-web-map-client/commit/c570fdb2f31204ab208ce54ab078045ecd41fc83)) -* wrong channelname ([6396da3](https://github.com/dadiorchen/treetracker-web-map-client/commit/6396da3804f7c0b4ab866e12f2b19cc8f50e1b65)) -* wrong folder ([92996b8](https://github.com/dadiorchen/treetracker-web-map-client/commit/92996b872895b10fbeb36da64abb80f5dc001d18)) -* wrong font size on top page ([9dab5e6](https://github.com/dadiorchen/treetracker-web-map-client/commit/9dab5e694286211d60a81be7b601f991d6d8966b)) -* wrong k8s mapping [skip ci] ([7514805](https://github.com/dadiorchen/treetracker-web-map-client/commit/7514805777713cb54cfbeefb23e2bfa1eef4ec8d)) -* wrong kuz base ([066bf29](https://github.com/dadiorchen/treetracker-web-map-client/commit/066bf29b82d96fff3584c57b849a2509b3b32309)) -* wrong range [skip ci] ([a6098fc](https://github.com/dadiorchen/treetracker-web-map-client/commit/a6098fc88f8bc5778adc8d327f3a5facf6a7bbb1)) -* wrong selected icon position ([32cf20e](https://github.com/dadiorchen/treetracker-web-map-client/commit/32cf20e697ceec2057bdd449b726d92891966a06)) -* wrong setting for k8s ([821a0b0](https://github.com/dadiorchen/treetracker-web-map-client/commit/821a0b0ed8d8a6adf89bd12b806dae200f8abfc9)) -* wrong token in action ([a3cc917](https://github.com/dadiorchen/treetracker-web-map-client/commit/a3cc91772e71b1b4fafe6e8793dc13fcf5d08130)) -* wrong token in action ([e803e6e](https://github.com/dadiorchen/treetracker-web-map-client/commit/e803e6e7e78dd752e88df27f9e0f153411fa30f2)) -* wrong trigger [skip ci] ([d242171](https://github.com/dadiorchen/treetracker-web-map-client/commit/d242171570c7fe09e47b7acc72b755314be71406)) -* wrong version number ([d41b5fd](https://github.com/dadiorchen/treetracker-web-map-client/commit/d41b5fd7ff011ab619595af24a57e084e560638b)) -* wrong version number ([9f52a64](https://github.com/dadiorchen/treetracker-web-map-client/commit/9f52a646e697a80c13dd5cb737e88da0db2f0746)) -* wrong version number ([a756082](https://github.com/dadiorchen/treetracker-web-map-client/commit/a756082e257bafd8715fe4f06f92877d1419cb1e)) -* wrong version number ([4db9cca](https://github.com/dadiorchen/treetracker-web-map-client/commit/4db9cca07a73a148a40741768d89ffb762d49769)) -* wrong version number ([6b5d611](https://github.com/dadiorchen/treetracker-web-map-client/commit/6b5d611e0ab040fda23c1ba0d7e9580e4dfae297)) -* wrong version number ([ce6ee41](https://github.com/dadiorchen/treetracker-web-map-client/commit/ce6ee410011f43c3ce43f33aa908952a5ff5beb3)) -* wrong version number ([8402d8c](https://github.com/dadiorchen/treetracker-web-map-client/commit/8402d8c4fba16279a0959dc42d9c9af54d1c2770)) -* wrong version number ([ca7887d](https://github.com/dadiorchen/treetracker-web-map-client/commit/ca7887d04d522f4bebdb94e09f811ad33d9b0745)) -* wrong version number ([f4e606a](https://github.com/dadiorchen/treetracker-web-map-client/commit/f4e606af89a500d1022d88a30999f68eacf1ccab)) -* wrong version number ([100bd56](https://github.com/dadiorchen/treetracker-web-map-client/commit/100bd56d0d3fea40eb8150bd1e7ccac478ca9af3)) -* wrong version number ([3bebf8a](https://github.com/dadiorchen/treetracker-web-map-client/commit/3bebf8abf439dbd44ef87f30526e1b3e1d238f3f)) -* wrong version number [skip ci] ([53a057f](https://github.com/dadiorchen/treetracker-web-map-client/commit/53a057f8e481a5d40dea6e9a8bd1ac2ec5d643ad)) -* wrong version number [skip ci] ([cf05c39](https://github.com/dadiorchen/treetracker-web-map-client/commit/cf05c3992012824b16706740ac15b8c7b139face)) -* wrong version numberr [skip ci] ([dc6bbb8](https://github.com/dadiorchen/treetracker-web-map-client/commit/dc6bbb82d67c1abeeabeed058ad2c6084a501fd8)) -* wrong width on the left part of the page. ([731a711](https://github.com/dadiorchen/treetracker-web-map-client/commit/731a711231943141dce627a9b4442374faa29e87)) -* wrongly call pathResolver ([9c75f46](https://github.com/dadiorchen/treetracker-web-map-client/commit/9c75f46c2157207edf5353c29a39bee646f26233)) -* yaml ([0575ecf](https://github.com/dadiorchen/treetracker-web-map-client/commit/0575ecf59b0e8b809114a8740aaead8646138dec)) -* yaml format ([f8e5e05](https://github.com/dadiorchen/treetracker-web-map-client/commit/f8e5e057a29651d7c67a3134085616edaf9a089b)) -* zoom buttons overlapping dialog ([1907df7](https://github.com/dadiorchen/treetracker-web-map-client/commit/1907df740c7ea5aa20dba16779c9c1df99bfaaa2)) -* zoom on mobile issue ([5e120e1](https://github.com/dadiorchen/treetracker-web-map-client/commit/5e120e156357c6e32a5c411ee03c29b1b130584b)) -* zoom on movile issue ([9bbb7f5](https://github.com/dadiorchen/treetracker-web-map-client/commit/9bbb7f53086fd80f4249c169b8433b1fd6a56f32)) - - -### Features - -* updated toolTip style acc to theme ([0ba074d](https://github.com/dadiorchen/treetracker-web-map-client/commit/0ba074dcc2ae2cfa9dd60fb9bab58027f2eac334)) -* a redesign to component has been made ([583b005](https://github.com/dadiorchen/treetracker-web-map-client/commit/583b005ec650687cd9db2f9b54367a380aa5ef87)) -* abbreviate tree count in CustomWorldMap component ([2c4f0e6](https://github.com/dadiorchen/treetracker-web-map-client/commit/2c4f0e6ed5af1099175f594ff17cdd25ad51e448)) -* about support markdown ([c73518d](https://github.com/dadiorchen/treetracker-web-map-client/commit/c73518da79f41c549781f7771cf13e2785619d59)) -* about, mession for org ([7720e9b](https://github.com/dadiorchen/treetracker-web-map-client/commit/7720e9b41ad53409e5026c67f273debfe13d296f)) -* about, mession for planter, wallet ([cb71659](https://github.com/dadiorchen/treetracker-web-map-client/commit/cb71659fde00249081d3dcdd864295325102205d)) -* action ([80a11ec](https://github.com/dadiorchen/treetracker-web-map-client/commit/80a11ec4c340d3e0d6b43dfcf8fd537ea27cd1ed)) -* action for cwm ([975ea7a](https://github.com/dadiorchen/treetracker-web-map-client/commit/975ea7a26231161d60c63e428f63a1d52a69a9c1)) -* adapt FeaturedTreesSlider to mobile device ([2c02266](https://github.com/dadiorchen/treetracker-web-map-client/commit/2c022668419d4a5fd97eb94a109fcb66f791b0fe)) -* add 0 as valid input for letter spacing ([ff19f96](https://github.com/dadiorchen/treetracker-web-map-client/commit/ff19f967813ec0956befb03db4aae5bc17693e90)) -* add alt attribute for image ([ae52938](https://github.com/dadiorchen/treetracker-web-map-client/commit/ae52938aeac24e37b931cb6802334ecf63a98449)) -* add apipath, v2 to pathresolver, capturePage ([608a23a](https://github.com/dadiorchen/treetracker-web-map-client/commit/608a23a1ea6798154e1f054f5c3dcf03ebabc605)) -* add back button on tree page ([dfa67f6](https://github.com/dadiorchen/treetracker-web-map-client/commit/dfa67f642b42292aeaee7c4acd08852196be4c77)) -* add change theme button ([d3c6d04](https://github.com/dadiorchen/treetracker-web-map-client/commit/d3c6d047b6123cd638ec70496085719ff558cd20)) -* add click to learn more ([66e34da](https://github.com/dadiorchen/treetracker-web-map-client/commit/66e34da3081d944e60473c1119f7e5860ad9dc24)) -* add codemod script in lint staged ([e9f2ace](https://github.com/dadiorchen/treetracker-web-map-client/commit/e9f2ace3a71701a9b1af9467ce5ee59f86709b0d)) -* add comment ([d3ff8a1](https://github.com/dadiorchen/treetracker-web-map-client/commit/d3ff8a19fbf6788c0b1f4712fed31f5e050e02cc)) -* add component to modify navbar ([20afd60](https://github.com/dadiorchen/treetracker-web-map-client/commit/20afd607b49ef88b0dc293091ab92156192e72db)) -* add copy function ([611bef5](https://github.com/dadiorchen/treetracker-web-map-client/commit/611bef557469bffc437bb909f04ec49c0c2ccb90)) -* add correct impact icons ([7716c63](https://github.com/dadiorchen/treetracker-web-map-client/commit/7716c632c2549e8c7fc54becfc04b4f414358703)) -* add crumbs to wallet token page ([1e0753c](https://github.com/dadiorchen/treetracker-web-map-client/commit/1e0753c071e02f86a0bd3c247c3d240cae0008b4)) -* add custom icon component ([0953304](https://github.com/dadiorchen/treetracker-web-map-client/commit/09533044db8d3993f76ad82e1d74fed4ea55c77e)) -* add custom logo selector ([bda430f](https://github.com/dadiorchen/treetracker-web-map-client/commit/bda430f37fdd7efb6515d900e04aaedc7e41e967)) -* add deployment to k8s ([8249642](https://github.com/dadiorchen/treetracker-web-map-client/commit/8249642af1732b94904c4c6da2763db84c94a8e5)) -* add drawertitle ([2f2ab7a](https://github.com/dadiorchen/treetracker-web-map-client/commit/2f2ab7a3a83a9712ca8574aa21bc91d120e9f568)) -* add fallback value ([0822ca5](https://github.com/dadiorchen/treetracker-web-map-client/commit/0822ca56773d98b11df6325a0e9c61d279854917)) -* add fallback value ([931a31c](https://github.com/dadiorchen/treetracker-web-map-client/commit/931a31c48917ef9be71c5a2f2009118567ea758a)) -* add fallback value ([5eb6a2f](https://github.com/dadiorchen/treetracker-web-map-client/commit/5eb6a2fcabc08621e64fe8d43eec991608c3813d)) -* add featured trees component ([c79a477](https://github.com/dadiorchen/treetracker-web-map-client/commit/c79a47747d75abc8dff216c7e2c3247d8955a29b)) -* add featured trees component ([f0556a5](https://github.com/dadiorchen/treetracker-web-map-client/commit/f0556a5b1f1befd44f0a84e87aff0115eaa6e5e0)) -* add featured trees component ([c0fd6b5](https://github.com/dadiorchen/treetracker-web-map-client/commit/c0fd6b52e22705270184eebcae60dd197b9e47b8)) -* add featured trees component ([5152e30](https://github.com/dadiorchen/treetracker-web-map-client/commit/5152e30b8bfb39503aa274cca05885eb16f6c185)) -* add filter to card ([be6ac62](https://github.com/dadiorchen/treetracker-web-map-client/commit/be6ac62b658b636e7a4655988083756c8cbe0e4d)) -* add fixture for cy ([09beae1](https://github.com/dadiorchen/treetracker-web-map-client/commit/09beae1c78383b82a2f85150348ccb4c195c2039)) -* add freetown special layer ([e95f49f](https://github.com/dadiorchen/treetracker-web-map-client/commit/e95f49fcb0bd18f6767a1ced88dc1237c05ba20e)) -* add graph image ([45a9afb](https://github.com/dadiorchen/treetracker-web-map-client/commit/45a9afb8fb373310dba9937ece40da39e4f5e4c9)) -* add greenstand logo png for light backgrounds ([0d51050](https://github.com/dadiorchen/treetracker-web-map-client/commit/0d51050685f4ea0fe59548e34784a127f4e4f2ad)) -* add icon alongside custom font ([f69338f](https://github.com/dadiorchen/treetracker-web-map-client/commit/f69338f86b02615463bf282946b77f2f12368dc9)) -* add image api setting ([0e76d16](https://github.com/dadiorchen/treetracker-web-map-client/commit/0e76d1694b94f803d1a2f019d1de39655a6f4465)) -* add image api setting for deploy ([1685d2c](https://github.com/dadiorchen/treetracker-web-map-client/commit/1685d2c9c1011b578d42cad15b8ac21733166e72)) -* add impact section ([92d73cc](https://github.com/dadiorchen/treetracker-web-map-client/commit/92d73ccd88e68040398c1e992a2075864f734a71)) -* add impact section to pages ([174a333](https://github.com/dadiorchen/treetracker-web-map-client/commit/174a33324d7621b00679f0503a0f6a101c21bf26)) -* add information card component ([2eec513](https://github.com/dadiorchen/treetracker-web-map-client/commit/2eec513fc937b7a5665ecb4f2065ad51b8f9591c)) -* add link for species ([13c7abd](https://github.com/dadiorchen/treetracker-web-map-client/commit/13c7abddd33e52cc008948b926d0ef91874f7799)) -* add link share icon ([76cef14](https://github.com/dadiorchen/treetracker-web-map-client/commit/76cef1410c69aed4bd98ecee3f56a71fdaa7e578)) -* add logic to the Back button [#33](https://github.com/dadiorchen/treetracker-web-map-client/issues/33) ([b8528c5](https://github.com/dadiorchen/treetracker-web-map-client/commit/b8528c5e1bb9c26fd748be417f59d1dcac0435f3)) -* add mock api cypress for one image tree ([e7a4f5e](https://github.com/dadiorchen/treetracker-web-map-client/commit/e7a4f5eeec837355c21498085ef057a736437953)) -* add new zoom-in-out button on mobile ([c7fd143](https://github.com/dadiorchen/treetracker-web-map-client/commit/c7fd143417ff81eb5aa0b3f0018236bd507714ed)) -* add next base handler ([b35ffa7](https://github.com/dadiorchen/treetracker-web-map-client/commit/b35ffa7dbfec623f530e644ade70ee612871b496)) -* add page title to error pages ([ba7d901](https://github.com/dadiorchen/treetracker-web-map-client/commit/ba7d901832b84f9549e4439931fc4bcc57f964f7)) -* add page title to global ([ff6b6ba](https://github.com/dadiorchen/treetracker-web-map-client/commit/ff6b6ba467191be80a37c97abbec2486d12f85b3)) -* add planter link to tree page ([a915557](https://github.com/dadiorchen/treetracker-web-map-client/commit/a915557453f3f211f881371bbc489bc81f5b8796)) -* add planter quote info ([f032471](https://github.com/dadiorchen/treetracker-web-map-client/commit/f03247184be69f8187a58509da9f5dbed0e19436)) -* add prefix ([3adb5a3](https://github.com/dadiorchen/treetracker-web-map-client/commit/3adb5a3351f8b2a1e591ca47db7e4788567ea43a)) -* add real location for org pages ([6f7019e](https://github.com/dadiorchen/treetracker-web-map-client/commit/6f7019ecd1f526168375f5271e87d8b2c0387e37)) -* add real location for planter pages ([5da18d3](https://github.com/dadiorchen/treetracker-web-map-client/commit/5da18d3349c695732ac533844221004afcc49f45)) -* add ref direct on drawer ([3bf3571](https://github.com/dadiorchen/treetracker-web-map-client/commit/3bf3571909347132f7aa35fee4fecb2594b9d796)) -* add reusuable component image ([7249b65](https://github.com/dadiorchen/treetracker-web-map-client/commit/7249b650d35f2032dc715b93b646653d4bb0263a)) -* add robot meta tag ([01ebb04](https://github.com/dadiorchen/treetracker-web-map-client/commit/01ebb04b0033f2f5b282e2265971a9227d493226)) -* add routes ([02bfe5b](https://github.com/dadiorchen/treetracker-web-map-client/commit/02bfe5b9b0886fd34c36541bb21e7c6545686526)) -* add SearchBoxMobile ([087de06](https://github.com/dadiorchen/treetracker-web-map-client/commit/087de067ae5f77313b6752360894c555d84626d7)) -* add share button ([3e3eb48](https://github.com/dadiorchen/treetracker-web-map-client/commit/3e3eb48ba9c06aed5c6e230a3e51952dbe3a4db7)) -* add share functionality to button ([e6c35cf](https://github.com/dadiorchen/treetracker-web-map-client/commit/e6c35cf4b4d2f961685805f20ed2a69efed64f3d)) -* add slider on top page ([3bf1030](https://github.com/dadiorchen/treetracker-web-map-client/commit/3bf1030dac4c8ce0e5137a2cd5cabd24f6cf3511)) -* add spacing for tree slider ([fc3d62a](https://github.com/dadiorchen/treetracker-web-map-client/commit/fc3d62a593be2cef2336aa5fa7cad09e7c46afdb)) -* add species in slider ([09a4686](https://github.com/dadiorchen/treetracker-web-map-client/commit/09a46865621affcf54963271b41554095a588839)) -* add support for Open Graph tags ([e14d9d6](https://github.com/dadiorchen/treetracker-web-map-client/commit/e14d9d606cea7e1a7b044c10d1b2a3dfef6aca5c)) -* add support for twitter ([4c971b8](https://github.com/dadiorchen/treetracker-web-map-client/commit/4c971b8eaf596425f46122d05f2145d4f2f276ae)) -* add tag chips component and cypress component test ([6bf3376](https://github.com/dadiorchen/treetracker-web-map-client/commit/6bf33769c222ce6f3a7ba175f59763e74a10e00a)) -* add tests ([2051d4a](https://github.com/dadiorchen/treetracker-web-map-client/commit/2051d4adcaaf7c0b392420b25db67dc684f48019)) -* add tests for search history ([2fed247](https://github.com/dadiorchen/treetracker-web-map-client/commit/2fed247a13e7e7403a8162db73d17f33ac7f366e)) -* add tests to PR workflow ([138974b](https://github.com/dadiorchen/treetracker-web-map-client/commit/138974b73e677e2d22a6250308c925398f8fce97)) -* add timeline desktop ([4895149](https://github.com/dadiorchen/treetracker-web-map-client/commit/489514925a5c0da67c89618a0cf0fd77b1cbeed0)) -* add timeline filter functionality ([9000dce](https://github.com/dadiorchen/treetracker-web-map-client/commit/9000dce6f44848e41176013bb763ed166e885bf5)) -* add timeline input validation ([1849e05](https://github.com/dadiorchen/treetracker-web-map-client/commit/1849e055094f8f162e1aff252ed04234f65c0c65)) -* add timeline mobile ([36d199f](https://github.com/dadiorchen/treetracker-web-map-client/commit/36d199f49e65affdc6f25dc6f3795f2fcc0457bb)) -* add title to pages ([9484781](https://github.com/dadiorchen/treetracker-web-map-client/commit/948478191cfb4982288f28fc62956d2f235d9e12)) -* add tooltip for uuid ([c8aa468](https://github.com/dadiorchen/treetracker-web-map-client/commit/c8aa46898f22621b5d45d41e0efff6fd44756801)) -* add tree image tests ([bc9635b](https://github.com/dadiorchen/treetracker-web-map-client/commit/bc9635b07b2377134cb5c0118baff044ed1f3f26)) -* add tree info dialog ([a6cb044](https://github.com/dadiorchen/treetracker-web-map-client/commit/a6cb0445f4f6cd5147214c200900a0e4351851c0)) -* add tree info dialog test ([ba4ddc9](https://github.com/dadiorchen/treetracker-web-map-client/commit/ba4ddc9c6e65d5f7f061d855b53e94b41a276e15)) -* add uuid tag ([5fec6e7](https://github.com/dadiorchen/treetracker-web-map-client/commit/5fec6e786e3ca6a5fe8fbaf04d5df0b48a92ecfe)) -* add version number ([0f9a154](https://github.com/dadiorchen/treetracker-web-map-client/commit/0f9a154b243dc83658035cc5f9de58b920ad5e13)) -* add wallet api ([495b53d](https://github.com/dadiorchen/treetracker-web-map-client/commit/495b53d5db94adc72544226eb245eee058e28258)) -* add wallet logo ([8070141](https://github.com/dadiorchen/treetracker-web-map-client/commit/8070141dbcf0277766cc2964da8e757d7dc24c65)) -* add wrapper for server props ([3293e79](https://github.com/dadiorchen/treetracker-web-map-client/commit/3293e79c39536e84651bd2e7053449c65b5eb562)) -* add wrapper on all pages ([0512c2c](https://github.com/dadiorchen/treetracker-web-map-client/commit/0512c2cccbe5f0c65f5030df6288354ed437a843)) -* add zoomIn and zoomOut buttons and the logic for the Map component [#332](https://github.com/dadiorchen/treetracker-web-map-client/issues/332) ([852e750](https://github.com/dadiorchen/treetracker-web-map-client/commit/852e750c5fdbc3e35f73fcdcee173da6ea7ae992)) -* added a custom 404 page ([63cc9c8](https://github.com/dadiorchen/treetracker-web-map-client/commit/63cc9c8320e029273a37b46b3abaafb97eab3600)) -* added ability to reset single colors ([b350cd1](https://github.com/dadiorchen/treetracker-web-map-client/commit/b350cd17ff29c96fd1cc4f796dd5a4aef25eb303)) -* added another input element for weights ([8d0131c](https://github.com/dadiorchen/treetracker-web-map-client/commit/8d0131c39b758cf8bb64428c970a9114167d3fa1)) -* added api call ([df1b738](https://github.com/dadiorchen/treetracker-web-map-client/commit/df1b738a7c39e3523c298ff354d6c2aed31645a8)) -* added concurrently and dev:mock script ([c807fcf](https://github.com/dadiorchen/treetracker-web-map-client/commit/c807fcf39d9447860e8bb6f968d3f09f63aaf5b2)) -* added country prop, fixed country locations ([b6e4069](https://github.com/dadiorchen/treetracker-web-map-client/commit/b6e4069d69d219ef9b15ec95aa1f46bbefd1690d)) -* added facebook like button ([2571ba2](https://github.com/dadiorchen/treetracker-web-map-client/commit/2571ba214cae5be0f903061b1a643ea9aee263cc)) -* added facebook like button ([faa548a](https://github.com/dadiorchen/treetracker-web-map-client/commit/faa548adec0f4e20a7d848099cd27d3ae06312ef)) -* added featured trees for planter ([ba51645](https://github.com/dadiorchen/treetracker-web-map-client/commit/ba51645886835bc09a18758085b225d575a6c637)) -* added featured wallet list ([2926cb5](https://github.com/dadiorchen/treetracker-web-map-client/commit/2926cb5e52a73f29a5058fcc3c4306bb2772109d)) -* added filter component ([b4526fa](https://github.com/dadiorchen/treetracker-web-map-client/commit/b4526fa1191b7fd1a5fa12f90a8be71a0f38af45)) -* added font weight validation ([852ce8b](https://github.com/dadiorchen/treetracker-web-map-client/commit/852ce8b2b6ea980cc03e183873be3ce44cfe5efd)) -* added icons to mobile view ([3851e23](https://github.com/dadiorchen/treetracker-web-map-client/commit/3851e23a03462b435dffaba34dbac519f616ea3e)) -* added link to navbar logo ([e98be5a](https://github.com/dadiorchen/treetracker-web-map-client/commit/e98be5afabb5a5762b12e849e6fdc46e57ecacec)) -* added location component ([f4d8272](https://github.com/dadiorchen/treetracker-web-map-client/commit/f4d8272031301575824798e7edd387a6d4f8daa7)) -* added more info to info panel ([32b205c](https://github.com/dadiorchen/treetracker-web-map-client/commit/32b205c4224a77e42af674786e455fe270af8315)) -* added next js ([3c6c6d6](https://github.com/dadiorchen/treetracker-web-map-client/commit/3c6c6d60117ca4ff760deca957f92375b8d065df)) -* added next router mocking for cypress ([80ca905](https://github.com/dadiorchen/treetracker-web-map-client/commit/80ca905d8252318ca335934efff2a7c578bf676e)) -* added organizations from stakeholders ([709ba83](https://github.com/dadiorchen/treetracker-web-map-client/commit/709ba83e32bba46ed2682838e47598c4ed4a1d4f)) -* added pin image from master ([508550f](https://github.com/dadiorchen/treetracker-web-map-client/commit/508550f3918c677d49d72c45f31f3db2c1341d85)) -* added single input resets ([6ccc0e9](https://github.com/dadiorchen/treetracker-web-map-client/commit/6ccc0e9111b6220920192b94491633adb90c540f)) -* added small map for wallet page ([c24ff67](https://github.com/dadiorchen/treetracker-web-map-client/commit/c24ff674a199e355722e81193d5d32786c73bde8)) -* added tooltip to CustomCard ([52e4d9f](https://github.com/dadiorchen/treetracker-web-map-client/commit/52e4d9f7c1417c8acee013f3e70749c03340d2fb)) -* added tooltip to display planters/orgs name ([967ea37](https://github.com/dadiorchen/treetracker-web-map-client/commit/967ea37472845c254afaa7905d6f863beb644d6b)) -* added unit test ([c8b2a6f](https://github.com/dadiorchen/treetracker-web-map-client/commit/c8b2a6ff7fcdb8d31299babf4fa4c17fd220a1f1)) -* added util methods for converting fontObjArr to normalized Google font Arr ([36c98d1](https://github.com/dadiorchen/treetracker-web-map-client/commit/36c98d1395c48700462c32f77e7151d2c2d6bd9e)) -* adding 404 svg image ([dbe6473](https://github.com/dadiorchen/treetracker-web-map-client/commit/dbe64733c200b647fea5a577627ff2a7db203110)) -* adjust theme to match new web map site design ([0f14286](https://github.com/dadiorchen/treetracker-web-map-client/commit/0f142867950114e8884280d904b40315a6c030f8)) -* admin can now set initial map view ([97bf46b](https://github.com/dadiorchen/treetracker-web-map-client/commit/97bf46bcf017f204a8f9caa635c0d555f2ccce2c)) -* api for wallet, token list, transaction list and so on ([ce276c7](https://github.com/dadiorchen/treetracker-web-map-client/commit/ce276c701e87a114e696d638b0e289b927a6339e)) -* app can handle wallet+token page ([de73b70](https://github.com/dadiorchen/treetracker-web-map-client/commit/de73b7059ce20a2400364eb2ae423a671a2ce512)) -* avoid drawer move when touch ([a13015a](https://github.com/dadiorchen/treetracker-web-map-client/commit/a13015a9f3eff7b5cc47d0324ddd03efec31e914)) -* badge component [#154](https://github.com/dadiorchen/treetracker-web-map-client/issues/154) ([5f6b5c8](https://github.com/dadiorchen/treetracker-web-map-client/commit/5f6b5c86f24d63b2848a42b2ea231e372c05f83a)) -* basic auth integration ([4cb421b](https://github.com/dadiorchen/treetracker-web-map-client/commit/4cb421b370408ad132b1bad938a442f066538a5f)) -* be able to edit theme ([510c944](https://github.com/dadiorchen/treetracker-web-map-client/commit/510c944a458475a5a4f19d8d6ef148be69fe998a)) -* be able to render logo in embed ([6def0b6](https://github.com/dadiorchen/treetracker-web-map-client/commit/6def0b6924f6521dd4075f908ede71335eb0670c)) -* be able to view theme ([1f19d40](https://github.com/dadiorchen/treetracker-web-map-client/commit/1f19d400f033e16346cdd20133d51e3cf468ef67)) -* beta deployment channel ([087c774](https://github.com/dadiorchen/treetracker-web-map-client/commit/087c7744e621afc07311aa08d99b795de0f859c2)) -* cache ([60eeaa4](https://github.com/dadiorchen/treetracker-web-map-client/commit/60eeaa49f0fd5d09790e0f3aedbfc27408b8f3ec)) -* can calculate org map initial view ([3c35918](https://github.com/dadiorchen/treetracker-web-map-client/commit/3c35918fea90d66acefb25d44aa8adc4510b6356)) -* can change theme ([6627e67](https://github.com/dadiorchen/treetracker-web-map-client/commit/6627e671a32eb6152a32f34473e4dc6daf613260)) -* can click and show tree panel ([89b09c4](https://github.com/dadiorchen/treetracker-web-map-client/commit/89b09c49d45cb51271330cd28cec5aa85ce07250)) -* can click cluster and zoom in ([7a54536](https://github.com/dadiorchen/treetracker-web-map-client/commit/7a54536eb34e99212e1ed68074b9a061e76b675e)) -* can click cluster to zoom in ([5d35578](https://github.com/dadiorchen/treetracker-web-map-client/commit/5d355780af697bbc8e669bb36bcda9a24788ff53)) -* can click next/prev ([83fe63f](https://github.com/dadiorchen/treetracker-web-map-client/commit/83fe63ff3657f4ec3953e543aae466ac595f4aee)) -* can dispay error message ([c6c49d9](https://github.com/dadiorchen/treetracker-web-map-client/commit/c6c49d926c5b64083c2a0b72908277adc0401aa2)) -* can display cluster highlight ([e34eb79](https://github.com/dadiorchen/treetracker-web-map-client/commit/e34eb7967d05c8d89c4ae7015e38213e3d0415b9)) -* can display first cluster tile ([8e751f6](https://github.com/dadiorchen/treetracker-web-map-client/commit/8e751f6112d502057adc4e0e22ac67b503ebc1fc)) -* can display free highlight ([a22c6b1](https://github.com/dadiorchen/treetracker-web-map-client/commit/a22c6b1bd2a3636e230f5f05fbaa25022ed8d07f)) -* can display map with leaflet, (new code) ([d515804](https://github.com/dadiorchen/treetracker-web-map-client/commit/d515804f6d0f0704b14013f76417115b73e650af)) -* can display single tree ([a8b37f0](https://github.com/dadiorchen/treetracker-web-map-client/commit/a8b37f0e213093c7887692d00c57eb4740d504d3)) -* can do on pages with new core version ([1ee05c5](https://github.com/dadiorchen/treetracker-web-map-client/commit/1ee05c53530ecb9637bc786b6b8ae930b675149c)) -* can highlight cluster ([3f5f055](https://github.com/dadiorchen/treetracker-web-map-client/commit/3f5f0551c654484e39200e7797d894683fdd8ed9)) -* can install core repo ([45fa613](https://github.com/dadiorchen/treetracker-web-map-client/commit/45fa6132b7241e12bf19374c937d5a358c6faaa7)) -* can load bounds from url ([322f40e](https://github.com/dadiorchen/treetracker-web-map-client/commit/322f40ef9605898790ba3afecb196f562cf2bff2)) -* can load cluster ([120b6d7](https://github.com/dadiorchen/treetracker-web-map-client/commit/120b6d77d560d90a4899a918be4785aee4b75720)) -* can load map(google) ([f9a6780](https://github.com/dadiorchen/treetracker-web-map-client/commit/f9a6780a8d34f4790e1cc62e83addd0f27a10520)) -* can load theme when open page ([1062c3a](https://github.com/dadiorchen/treetracker-web-map-client/commit/1062c3a332270a75508be9173b8a145b857e7c9d)) -* can mock api by prism ([b786b0e](https://github.com/dadiorchen/treetracker-web-map-client/commit/b786b0eef7cdde11fc59ff204d8d8314afbad179)) -* can mock instantly ([1a5fbad](https://github.com/dadiorchen/treetracker-web-map-client/commit/1a5fbad068711573a842fcc6d7ac0babc9a7e730)) -* can pagination tokens on wallet map ([c0f21f0](https://github.com/dadiorchen/treetracker-web-map-client/commit/c0f21f07e7beb751946b19297e80a2ff3c5be0bd)) -* can render both side ([891023d](https://github.com/dadiorchen/treetracker-web-map-client/commit/891023d96fa630db61c82d53c11d20a8b29f53a0)) -* can reqeust ?tree_name=xxx now ([fe8a4e9](https://github.com/dadiorchen/treetracker-web-map-client/commit/fe8a4e9601d99a7af02d6421ff33e2a79713d53c)) -* can rewrite path ([7afd194](https://github.com/dadiorchen/treetracker-web-map-client/commit/7afd1948ef1231a1e19f20a949deab76e5092e1c)) -* can save/load theme from db ([16c4582](https://github.com/dadiorchen/treetracker-web-map-client/commit/16c458263401eef8070d3db935b4275653e87d2c)) -* can select the tree marker ([b9eeaaa](https://github.com/dadiorchen/treetracker-web-map-client/commit/b9eeaaa8cb7e31befe4dfdd021cf5b3ff5596e47)) -* can show nearest arrow, and click ([eb1e4ab](https://github.com/dadiorchen/treetracker-web-map-client/commit/eb1e4abb6efbc3b34376dc519d30e431f3ac349e)) -* can show org map ([8dde4d6](https://github.com/dadiorchen/treetracker-web-map-client/commit/8dde4d6a12f33e7a78b08184898903eb88ae908a)) -* can show selected tree icon ([a55ddf4](https://github.com/dadiorchen/treetracker-web-map-client/commit/a55ddf423bc86d987bd083daaddd6d390af235de)) -* can use zoome_target ([15b85af](https://github.com/dadiorchen/treetracker-web-map-client/commit/15b85af6ac789f805a2375d2fe14096f8b9112cf)) -* can zoom in by click cluster ([ee1fb2c](https://github.com/dadiorchen/treetracker-web-map-client/commit/ee1fb2ca3c063e5b673feaecfe5937cbce6539d4)) -* can zoom in cluster ([bb62de6](https://github.com/dadiorchen/treetracker-web-map-client/commit/bb62de68a2e8dc7de8c6fd2ae779ca9cd2bfc10f)) -* can zoom in to single tree view on the map ([943a0a2](https://github.com/dadiorchen/treetracker-web-map-client/commit/943a0a21226efa1010757ac9bb50b703062f6384)) -* change default state for continentTags and make API calls upon tag selection ([157e55b](https://github.com/dadiorchen/treetracker-web-map-client/commit/157e55b3d6798a09bec4d09bfbe75e90a91a16a7)) -* change domain ([95c19c3](https://github.com/dadiorchen/treetracker-web-map-client/commit/95c19c33ff990eab72ecc6d5c0c20d205dfc60c3)) -* change padding ([3442e2c](https://github.com/dadiorchen/treetracker-web-map-client/commit/3442e2cff1e9bc16d0ba0ea2c5c728a739aeac4a)) -* change padding ([da8f8b3](https://github.com/dadiorchen/treetracker-web-map-client/commit/da8f8b3e8544c39a67ac64ff6f874eeb8cee90f6)) -* changed planter to grower, fixed date format ([8a85881](https://github.com/dadiorchen/treetracker-web-map-client/commit/8a8588139205c7a09da3a01ff7658acfec81940f)) -* compare tree tag info ([8a59340](https://github.com/dadiorchen/treetracker-web-map-client/commit/8a593403cf4a420f31cc01aed4ec91ddf8e15566)) -* component for search box ([1c45e1f](https://github.com/dadiorchen/treetracker-web-map-client/commit/1c45e1f32a003cbf1fc4884f2b63523dc9b6fca2)) -* connect backend config ([2f9a2e6](https://github.com/dadiorchen/treetracker-web-map-client/commit/2f9a2e641ec6d180fb5d85e21a1e4c0d089fc3e5)) -* control ([5f4979e](https://github.com/dadiorchen/treetracker-web-map-client/commit/5f4979ed31f58860e1b763637e1b16a6ced7b1ae)) -* contry leader; jump to country; ([52c02d9](https://github.com/dadiorchen/treetracker-web-map-client/commit/52c02d9a6d2afc5d610a78765fa0472254f94cc7)) -* converted fontObj Arr to google font libs normalized arr ([1e8adb0](https://github.com/dadiorchen/treetracker-web-map-client/commit/1e8adb0f9ff33ce9d3f51bfd9e7cb52f43322498)) -* core 2.6.0 ([c702680](https://github.com/dadiorchen/treetracker-web-map-client/commit/c70268089f2a2bc06062165a024bb5cc1bf97fa5)) -* cover page for org ([283ab09](https://github.com/dadiorchen/treetracker-web-map-client/commit/283ab093cb788b994a682d1be31df7726e7c2cf7)) -* cover page for wallet ([e630c1d](https://github.com/dadiorchen/treetracker-web-map-client/commit/e630c1de12bcf5bd8e34d354f7d82a0f69af960d)) -* create github pull_request_template.md ([c2c6460](https://github.com/dadiorchen/treetracker-web-map-client/commit/c2c6460e808dd9f939aaea2b6e68daa294166c06)) -* crumbs for pages ([f6b8e1e](https://github.com/dadiorchen/treetracker-web-map-client/commit/f6b8e1e6f9f69319d46799de457c86c9ba25f8c1)) -* custom card in planter ([5729b7c](https://github.com/dadiorchen/treetracker-web-map-client/commit/5729b7c42b307b26060238dcfcf9c2d05637d33e)) -* **custom-card:** add new icon component ([be6980c](https://github.com/dadiorchen/treetracker-web-map-client/commit/be6980c58932e2e6dc9445833261e7179a64904f)) -* **cwm-editor:** add useCallback to reduce renders ([f04bed0](https://github.com/dadiorchen/treetracker-web-map-client/commit/f04bed0aed1b0f929be4f2435aaa873d2e138da0)) -* **cwm:** add config context ([d151561](https://github.com/dadiorchen/treetracker-web-map-client/commit/d1515616ab0110cacdad5b54c7ed05e0ca056fab)) -* **cwm:** add default config as initial context value ([5d85fa5](https://github.com/dadiorchen/treetracker-web-map-client/commit/5d85fa5c810146e194c9aa65ea3a35333b8771ae)) -* cypress open without nock ([e16bd81](https://github.com/dadiorchen/treetracker-web-map-client/commit/e16bd81751c4c0bd752eab497adc58fcb1c1cb5a)) -* **dashboard:** add basic setup ([6b6e64a](https://github.com/dadiorchen/treetracker-web-map-client/commit/6b6e64a8b1ce12a33813bbc678f2adfdb5007aa4)) -* **dashboard:** add mock for logged in organization ([fe40667](https://github.com/dadiorchen/treetracker-web-map-client/commit/fe40667d7adc5386d465e3beb39198003dcfe25b)) -* **dashboard:** add navbar tab ([68dbdec](https://github.com/dadiorchen/treetracker-web-map-client/commit/68dbdec7d2b65dfff684414bc8d3b56b4a979649)) -* **dashboard:** can add new nav item ([59170d9](https://github.com/dadiorchen/treetracker-web-map-client/commit/59170d94884f6926a2251563363ef21c7e21b7c5)) -* **dashboard:** can preview logo and change the url ([0003fa8](https://github.com/dadiorchen/treetracker-web-map-client/commit/0003fa89595e413fcb929f310e93dfe1e6b5482d)) -* **dashboard:** can remove nav item ([4e461e3](https://github.com/dadiorchen/treetracker-web-map-client/commit/4e461e33b621e9a9a67ef214595785612e0f52ab)) -* **dashboard:** can reorder nav items with drag drop ([565cea3](https://github.com/dadiorchen/treetracker-web-map-client/commit/565cea367fb174c6dfae19ef0bc79f8d58f56164)) -* **dashboard:** change drag area to drag icon ([b2a9e9d](https://github.com/dadiorchen/treetracker-web-map-client/commit/b2a9e9db39b4df3c795b1609f9be4b486363e0d2)) -* **dashboard:** change nav item delete button to icon ([f5cdfa8](https://github.com/dadiorchen/treetracker-web-map-client/commit/f5cdfa8c509a970eaa857d3afd8e11367e020763)) -* **dashboard:** only show update button if nav item changed ([5b49111](https://github.com/dadiorchen/treetracker-web-map-client/commit/5b491113b3745c71dd4fac679b648dd30fd30479)) -* **dashboard:** setup basic state ([8d51ee1](https://github.com/dadiorchen/treetracker-web-map-client/commit/8d51ee10d566d934e13978a3a66d5f563f9915c3)) -* **dashboard:** update styling ([bd4db49](https://github.com/dadiorchen/treetracker-web-map-client/commit/bd4db49987af7285ee9a6eef06167d326fb6aec3)) -* default bg image ([30690d8](https://github.com/dadiorchen/treetracker-web-map-client/commit/30690d8584d7c3e02dec10fa63a55da5a7f8569b)) -* dep for next ([558fd0e](https://github.com/dadiorchen/treetracker-web-map-client/commit/558fd0e92f66a1611a35cccd8f9fcbf29dcaf6fa)) -* deploy test ([40a9a99](https://github.com/dadiorchen/treetracker-web-map-client/commit/40a9a99eb79369bdb367c24857591621f825301f)) -* deploy test \n\n BREAKING CHANGE: it breaks something ([8c34ab0](https://github.com/dadiorchen/treetracker-web-map-client/commit/8c34ab066417b145a2b70098cc61df277d0d7fb8)) -* deploy to channel ([ea533c4](https://github.com/dadiorchen/treetracker-web-map-client/commit/ea533c43d7e6b1b276b8fd38a1bcd6b554c5f916)) -* deployment action [skip ci] ([d6ebcdc](https://github.com/dadiorchen/treetracker-web-map-client/commit/d6ebcdc64075c037bd3a300d90ca810acf2907d2)) -* developed SearchButton ([5fb0451](https://github.com/dadiorchen/treetracker-web-map-client/commit/5fb04517de147a63df29338099c7f4122bb13523)) -* diabled slider buttons if user has reached extreme left or extreme right of the scroll area ([a3d7031](https://github.com/dadiorchen/treetracker-web-map-client/commit/a3d703189f50d661094d65745fb9d91b4df2a9a0)) -* disable cache ([a49b3ce](https://github.com/dadiorchen/treetracker-web-map-client/commit/a49b3ce0d8ff3900fcc15ede941e24c90a392131)) -* disable cards on impact section ([7f56ddd](https://github.com/dadiorchen/treetracker-web-map-client/commit/7f56ddda5984246747a52f7eedddea9bba130339)) -* disable config api loading by default ([fd0f7dd](https://github.com/dadiorchen/treetracker-web-map-client/commit/fd0f7dd6d479e9e72610cbb44586d479fc8e7fa5)) -* disable keycloak temp ([02ea67a](https://github.com/dadiorchen/treetracker-web-map-client/commit/02ea67afe95c47ae1bd32e47509a9f72db2172c6)) -* disable pull to refresh ([321f5e3](https://github.com/dadiorchen/treetracker-web-map-client/commit/321f5e3650ddf78417c48e481b1208357660c5d1)) -* display more tree tag ([6fac813](https://github.com/dadiorchen/treetracker-web-map-client/commit/6fac81383986838c4732cecdb398022a6873c5a6)) -* display two kind of cluster icon ([6b4a911](https://github.com/dadiorchen/treetracker-web-map-client/commit/6b4a911288f2b669da6029520b4fa39b54625f95)) -* drawer component ([8c6704f](https://github.com/dadiorchen/treetracker-web-map-client/commit/8c6704f27ad8ab50ba6c98f4ddbd25893fbcb491)) -* dryrun[skip ci] ([8945bda](https://github.com/dadiorchen/treetracker-web-map-client/commit/8945bda00ad8e21d5699aa3a68f92edc823bbd2e)) -* embed ([47ff2d5](https://github.com/dadiorchen/treetracker-web-map-client/commit/47ff2d5c0c629a2daf421bc661f531bbea5d4250)) -* embed map ([4cd7f5a](https://github.com/dadiorchen/treetracker-web-map-client/commit/4cd7f5aa56c537ed04aff88be9420abf426227e0)) -* embed param override localStorage embed ([2d020a3](https://github.com/dadiorchen/treetracker-web-map-client/commit/2d020a395d8c4ed032fb4540cc3669cbf94d2c9a)) -* error/warning component [#341](https://github.com/dadiorchen/treetracker-web-map-client/issues/341) ([1057148](https://github.com/dadiorchen/treetracker-web-map-client/commit/1057148b395ee322d5f6b2314aaa3961923d25bc)) -* error/warning component Grenstand[#341](https://github.com/dadiorchen/treetracker-web-map-client/issues/341) ([ff7567b](https://github.com/dadiorchen/treetracker-web-map-client/commit/ff7567bf702dde34ae99b9620177fea051a4bcf7)) -* featured wallet ([04e5fa8](https://github.com/dadiorchen/treetracker-web-map-client/commit/04e5fa8e28d9e8fbeea2e96b9151db3c8b37a575)) -* filter/search pages ([1b7db44](https://github.com/dadiorchen/treetracker-web-map-client/commit/1b7db44e3e038b94619bc71d91ab66c658299806)) -* final country board ([6eb4511](https://github.com/dadiorchen/treetracker-web-map-client/commit/6eb45111583efd07bfe083d2fe749a2a811d3cdc)) -* finished the capture page for whats ready ([20a31a2](https://github.com/dadiorchen/treetracker-web-map-client/commit/20a31a23c85e375a42c6ebc1115ed1c92d17aeab)) -* finished up adding tree slider ([e6fcf12](https://github.com/dadiorchen/treetracker-web-map-client/commit/e6fcf12b7455a745f123a2ecfb4d10c05376e4f3)) -* first feature of other release \n\n BREAKING CHANGE: it breaks something ([f61fcc5](https://github.com/dadiorchen/treetracker-web-map-client/commit/f61fcc5f01265b62ec130d5c56c3ca6637bdde87)) -* fix two point problem ([36b840b](https://github.com/dadiorchen/treetracker-web-map-client/commit/36b840b98e886caeebdb81d0ecc5156631aeee2b)) -* fixed the title area drawer mobile ([08a4f74](https://github.com/dadiorchen/treetracker-web-map-client/commit/08a4f74d214122e2a9c9623811be3e18ad42ecf3)) -* flex wrap the token cards ([ce50954](https://github.com/dadiorchen/treetracker-web-map-client/commit/ce50954bbf8534f94e41c645041cdb05fd066594)) -* focus the tree if needed ([6d891ff](https://github.com/dadiorchen/treetracker-web-map-client/commit/6d891ffb241799f8c78abea147e794269ff32775)) -* formatDateString util function ([cb2786e](https://github.com/dadiorchen/treetracker-web-map-client/commit/cb2786e71b10f5119dbb3f1e46e4125fe1698d01)) -* freetown map use special tile ([e25976c](https://github.com/dadiorchen/treetracker-web-map-client/commit/e25976c0c0e36e2015538d0cbaafcf06d13d33e1)) -* freetown org name use tile server ([44cbbf7](https://github.com/dadiorchen/treetracker-web-map-client/commit/44cbbf77358e4f311d91238f972395bb69f92f56)) -* github pull request workflow ([97c1ddb](https://github.com/dadiorchen/treetracker-web-map-client/commit/97c1ddb0c58c0813c29e24b0082be710b15d64b9)) -* give error feedback on incorrect date ([45507bb](https://github.com/dadiorchen/treetracker-web-map-client/commit/45507bbdd3decf44ce1dd1600e3dce61f90cd8c7)) -* greenstand logo is a link ([5a65387](https://github.com/dadiorchen/treetracker-web-map-client/commit/5a653870311aa5c240b88692095be336aad5c71f)) -* handle no data all pages ([c2bbf19](https://github.com/dadiorchen/treetracker-web-map-client/commit/c2bbf19f54f267eaa08e539393d99d976fecf42c)) -* handle no data planter page ([cabbfdc](https://github.com/dadiorchen/treetracker-web-map-client/commit/cabbfdc65c41fd17f43b47e7f97f9bf7f98dd55c)) -* hid scroll button(left,right) on mobile devices ([a9d580d](https://github.com/dadiorchen/treetracker-web-map-client/commit/a9d580d8aabcee7e9cadd44820b90dda20fa115e)) -* i've worked on the review comments and added the test to mount the component ([ce149c3](https://github.com/dadiorchen/treetracker-web-map-client/commit/ce149c3a62b331607e341a214a2806fd23591a81)) -* implement navbar config ([7511bbe](https://github.com/dadiorchen/treetracker-web-map-client/commit/7511bbe6a0d54d21f4d9e56f9ea624f5d4eebfa1)) -* implement search history ([11a1a18](https://github.com/dadiorchen/treetracker-web-map-client/commit/11a1a189f0bd23fb89921b4192c878e32b8a01f7)) -* implemented wallet page ([f3c9217](https://github.com/dadiorchen/treetracker-web-map-client/commit/f3c9217a021b4ab22057a9434d97a05f6081a42a)) -* implemted token page ([664ef8b](https://github.com/dadiorchen/treetracker-web-map-client/commit/664ef8ba59694175dea3ee18f2a4c67fdef60bbc)) -* increase expire time ([fd5305f](https://github.com/dadiorchen/treetracker-web-map-client/commit/fd5305fa44b7b3ead07742366e8afc346bb690ba)) -* increase padding of card content ([40ad679](https://github.com/dadiorchen/treetracker-web-map-client/commit/40ad67982f47f231c19108d3588abd8c6f2560d0)) -* **info:** center items vertically ([fddd0aa](https://github.com/dadiorchen/treetracker-web-map-client/commit/fddd0aa039e8a8f54167890004e23a65e3b7f6e8)) -* initial deployment ([cfd7fe6](https://github.com/dadiorchen/treetracker-web-map-client/commit/cfd7fe6e3bb4751bec398d37b63a22d191f2a125)) -* initial position ([4aa4994](https://github.com/dadiorchen/treetracker-web-map-client/commit/4aa4994618bf408f3d5b57b43b38b58c075a505e)) -* installed jest ([e7d7280](https://github.com/dadiorchen/treetracker-web-map-client/commit/e7d728032e43ce1977a24db9f728a4dd57e7ed15)) -* integrate google analytics ([fdea030](https://github.com/dadiorchen/treetracker-web-map-client/commit/fdea0305938741767c6339ef2f8ad49b154db6cd)) -* isr - resolves: [#571](https://github.com/dadiorchen/treetracker-web-map-client/issues/571) ([d1b5857](https://github.com/dadiorchen/treetracker-web-map-client/commit/d1b58577eee1d073a1abaeedc46f667252a2e1fc)) -* isr for top ([cf2221c](https://github.com/dadiorchen/treetracker-web-map-client/commit/cf2221c1c6964e350a28d9a4a166217231ea24bc)) -* issue [#298](https://github.com/dadiorchen/treetracker-web-map-client/issues/298) flag icons ([4aa8920](https://github.com/dadiorchen/treetracker-web-map-client/commit/4aa8920f8aed0cca94eb4139e7a838a7e1bb41e5)) -* issue [#304](https://github.com/dadiorchen/treetracker-web-map-client/issues/304) add world map component ([1495bb5](https://github.com/dadiorchen/treetracker-web-map-client/commit/1495bb50d65c37c4742efe13783c8db07bbabc59)) -* issue [#307](https://github.com/dadiorchen/treetracker-web-map-client/issues/307) card component ([45a7898](https://github.com/dadiorchen/treetracker-web-map-client/commit/45a7898e63b76eff63b0e652303b30a990d77f34)) -* issue [#309](https://github.com/dadiorchen/treetracker-web-map-client/issues/309) tree species card component ([f0eb526](https://github.com/dadiorchen/treetracker-web-map-client/commit/f0eb5260a63da1f52d0500efe345bf391577df61)) -* issue [#380](https://github.com/dadiorchen/treetracker-web-map-client/issues/380) merge time and location component ([2dcdc44](https://github.com/dadiorchen/treetracker-web-map-client/commit/2dcdc4444537323fd5b0b27b5ecd9e44f2096872)) -* issue [#475](https://github.com/dadiorchen/treetracker-web-map-client/issues/475) add localstorage hook ([3b0a720](https://github.com/dadiorchen/treetracker-web-map-client/commit/3b0a7206adef9033580d0b8df4f3b6fbdd40c7be)) -* issue [#503](https://github.com/dadiorchen/treetracker-web-map-client/issues/503) update designsandbox ([fc77443](https://github.com/dadiorchen/treetracker-web-map-client/commit/fc774431d32f716b316a2eccff8924eb7ce6657e)) -* jsconfig for absolute import paths ([b9baf45](https://github.com/dadiorchen/treetracker-web-map-client/commit/b9baf459a7b1bc52b1cc576b368e988c3647f3fe)) -* k8s setting ([66cfdf1](https://github.com/dadiorchen/treetracker-web-map-client/commit/66cfdf18de2bc82295fda38e7cd4e1f5b6df7f12)) -* layout for crumbs ([e314231](https://github.com/dadiorchen/treetracker-web-map-client/commit/e314231ad0c90c05ca9afd9de9c3b672329b5ca0)) -* layout for home page is okay ([eb8ce3a](https://github.com/dadiorchen/treetracker-web-map-client/commit/eb8ce3aaa677377443331d1624f10fec29e1b3b4)) -* layout for transactions ([2a776bd](https://github.com/dadiorchen/treetracker-web-map-client/commit/2a776bd38902e8be2303d67b7b2b3e964c5d8669)) -* layout for wallet token on mobile ([e5d5c41](https://github.com/dadiorchen/treetracker-web-map-client/commit/e5d5c41eb7dd45e6ef9a231caf04942d9ba3ee0e)) -* layout refine, fullscreen ([7425b28](https://github.com/dadiorchen/treetracker-web-map-client/commit/7425b28281233d7b599955183b6d1b90d5617279)) -* layout wallet page ([4ff9981](https://github.com/dadiorchen/treetracker-web-map-client/commit/4ff99813215cda4099d2749726c3251b4d83029a)) -* layout, details ([45ea0aa](https://github.com/dadiorchen/treetracker-web-map-client/commit/45ea0aa1ab9c34efee5e1b18681f08dcb5a57c3f)) -* leader board integrated ([c1ef117](https://github.com/dadiorchen/treetracker-web-map-client/commit/c1ef1171ff378d5f17009b6642aa7f8ffa5d8a2a)) -* leaderboard component draft ([cae5481](https://github.com/dadiorchen/treetracker-web-map-client/commit/cae5481fed3edbd7586bbe731b23d8bcbaca8752)) -* link for planter's tree ([8ee7b70](https://github.com/dadiorchen/treetracker-web-map-client/commit/8ee7b706250d90fbf0a434294c01fbeffd84bd65)) -* link kill height ([c4c97ca](https://github.com/dadiorchen/treetracker-web-map-client/commit/c4c97cac4166b4d0372e02e88572ea25fac675ba)) -* load tree on wallet page ([9c01fbd](https://github.com/dadiorchen/treetracker-web-map-client/commit/9c01fbd74d84735ba3be70af79731acd3be264c5)) -* loading page ([5b3c1d8](https://github.com/dadiorchen/treetracker-web-map-client/commit/5b3c1d8332570fe4f9dd7451944d22b4fd66264b)) -* loading spinner ([461df6b](https://github.com/dadiorchen/treetracker-web-map-client/commit/461df6b8da87b65eae2ac605dff3a08dd979e090)) -* localStorage for embed ([c7ef5f6](https://github.com/dadiorchen/treetracker-web-map-client/commit/c7ef5f668d991e9f4064ecff88075dbe277a717e)) -* location for planter info ([3207a8e](https://github.com/dadiorchen/treetracker-web-map-client/commit/3207a8eee37659d15ab9a9fbe0818b734e7f12de)) -* logo ([45a0341](https://github.com/dadiorchen/treetracker-web-map-client/commit/45a03411c4f257de9f6e4fc10c81bc624ed6896b)) -* make toggletheme component sticky ([affe315](https://github.com/dadiorchen/treetracker-web-map-client/commit/affe315faaa5d7a00c009565e90743745e722f21)) -* map be able to jump to planter view ([b25d944](https://github.com/dadiorchen/treetracker-web-map-client/commit/b25d944210e4064e456a0c8845491efe5cf80b37)) -* map for token page ([660bd59](https://github.com/dadiorchen/treetracker-web-map-client/commit/660bd59045e313ec66a7ef0cd63f9c7020f8f873)) -* master use '' channel ([3254891](https://github.com/dadiorchen/treetracker-web-map-client/commit/3254891da48b61371d7419d1d13cf14d37f06e86)) -* merge beta ([0490870](https://github.com/dadiorchen/treetracker-web-map-client/commit/04908708e5c6ba9c081afd915b51c2486efd8b67)) -* merge beta ([425baa6](https://github.com/dadiorchen/treetracker-web-map-client/commit/425baa68b7e114790a9b15481ab9243ac2b52665)) -* merge beta ([564f582](https://github.com/dadiorchen/treetracker-web-map-client/commit/564f582ef9e704735ecc28fd352a9ebb8907069d)) -* merge beta ([0acd2ac](https://github.com/dadiorchen/treetracker-web-map-client/commit/0acd2ac872f9b6355aab439022f1f012b58bafc7)) -* merge beta ([a5856bc](https://github.com/dadiorchen/treetracker-web-map-client/commit/a5856bc082477b86dde74ab654177c4cc1a0edfe)) -* merge beta ([1e794ba](https://github.com/dadiorchen/treetracker-web-map-client/commit/1e794ba0fa09a54b60acd3ec39f13a231dfbbc79)) -* merge control the display of geojson in freetown, merge from old version ([2df2ade](https://github.com/dadiorchen/treetracker-web-map-client/commit/2df2aded5c9372b9b97138f6c12c6387397481ec)) -* merge ocean black box fixing from old version to new ([b7b8151](https://github.com/dadiorchen/treetracker-web-map-client/commit/b7b81515e98687ef896b2658532cd917881aefaa)) -* mobile drawer ([74239fb](https://github.com/dadiorchen/treetracker-web-map-client/commit/74239fb93e026db606696e92d68b3f7bcb0c667b)) -* mobile drawer ([9d6da6c](https://github.com/dadiorchen/treetracker-web-map-client/commit/9d6da6ca9a30b0fa70c987d145ef43986de22044)) -* mock api for planter/tree in wallet app ([57296c7](https://github.com/dadiorchen/treetracker-web-map-client/commit/57296c73e3631f0987c3cbce4454b146bf94221a)) -* modified font List Comp to work with new type of form data ([975f533](https://github.com/dadiorchen/treetracker-web-map-client/commit/975f5333e4939b4ffa1c9ca2e19bb242da96ebc0)) -* modify FeaturedTreesSlider to support display of small sized images ([0562048](https://github.com/dadiorchen/treetracker-web-map-client/commit/056204870df687dfcd8367f9739c93ea074fac72)) -* moreEffect config ([0115899](https://github.com/dadiorchen/treetracker-web-map-client/commit/01158997b1d356297a7f82923b8be7218641cadf)) -* mount tag chip component to the top page ([9a24cbe](https://github.com/dadiorchen/treetracker-web-map-client/commit/9a24cbee9696b597362a9f55973799269b19c5c7)) -* mountWithTheme wrapper for cypress ([ef4a8d3](https://github.com/dadiorchen/treetracker-web-map-client/commit/ef4a8d36b7f75b5c3dc87a90756c10697c4c41ba)) -* move codeshift to scripts folder ([a725f94](https://github.com/dadiorchen/treetracker-web-map-client/commit/a725f942ce96b8cebadc1699de6ffec668fb5b79)) -* move hooks into indexed folder ([22c8c89](https://github.com/dadiorchen/treetracker-web-map-client/commit/22c8c89c722b377138e71d2d47e2716a333cfa2e)) -* name [skip ci] ([b4b8ff9](https://github.com/dadiorchen/treetracker-web-map-client/commit/b4b8ff90fe658cb460766061b23fcc9c8ae7ee23)) -* navbar component ([5dd63ce](https://github.com/dadiorchen/treetracker-web-map-client/commit/5dd63ce99bc0a8191ac247839450cbad09fc995c)) -* new changes to the leaderboard component ([5067fe0](https://github.com/dadiorchen/treetracker-web-map-client/commit/5067fe06cd59a61964c4e0bd0c53ff1f46c4bccc)) -* new core ([94685fd](https://github.com/dadiorchen/treetracker-web-map-client/commit/94685fd31a568efd75adc04a2ad20ec9e2ad4c65)) -* new darwer for mobile ([baa3e84](https://github.com/dadiorchen/treetracker-web-map-client/commit/baa3e84a8a3340085e173bd32db67f32be038da2)) -* new layout for the tags, org data loading ([40362c2](https://github.com/dadiorchen/treetracker-web-map-client/commit/40362c2c9ae4afe2b2dcfa091212f1acb2bc4c1a)) -* next api mocking in cypress ([2dc35ff](https://github.com/dadiorchen/treetracker-web-map-client/commit/2dc35ffb1d7841fa7ca4278c7672b4646649f86f)) -* next domain ([e1524f7](https://github.com/dadiorchen/treetracker-web-map-client/commit/e1524f70e0966fa93ffd3b8825523a3b7a9d280d)) -* next domain ([5a63431](https://github.com/dadiorchen/treetracker-web-map-client/commit/5a6343100e5da7983ac7c8a4f2d3b2a96aac9895)) -* next integrated into app ([bfe060d](https://github.com/dadiorchen/treetracker-web-map-client/commit/bfe060d6a53fd2d272d830c247df92a81a69d730)) -* next/Link wrapper component ([478ffd0](https://github.com/dadiorchen/treetracker-web-map-client/commit/478ffd0f84dd3a00633c7b67df0f39c93b736215)) -* org, wallet, tree, token by name ([2694c4d](https://github.com/dadiorchen/treetracker-web-map-client/commit/2694c4d7d59911612e31421c9156ea00e624043e)) -* organization page with several lists ([3aec18b](https://github.com/dadiorchen/treetracker-web-map-client/commit/3aec18bc43d10ea142254d230e23dca5b99575f5)) -* organizations/[id] page ([5b3371a](https://github.com/dadiorchen/treetracker-web-map-client/commit/5b3371ad8ad0c8340dd4aea5e2c4ff4026270318)) -* path resolver ([bd7c0f8](https://github.com/dadiorchen/treetracker-web-map-client/commit/bd7c0f8723e13e6a21ac515ca5f02d10481cb9c8)) -* planter name, mobile full screen ([b5a24db](https://github.com/dadiorchen/treetracker-web-map-client/commit/b5a24db5a41458e7f226b89cc2b4acda354da84a)) -* planter page ([1294c43](https://github.com/dadiorchen/treetracker-web-map-client/commit/1294c4371da835baca832f9aa7e213bc7c6002c6)) -* planter quote layout, species data ([3ad9527](https://github.com/dadiorchen/treetracker-web-map-client/commit/3ad9527af9dd3c02eb205487fdde5926ecb17bca)) -* **playground:** add basic color components ([292b0ca](https://github.com/dadiorchen/treetracker-web-map-client/commit/292b0caac1517c2752cd77d9c96b6c45176d03a2)) -* **playground:** add color picker ([1f49e44](https://github.com/dadiorchen/treetracker-web-map-client/commit/1f49e44a33450bb306fb2c0f4e5887f92b31132a)) -* **playground:** add context provider ([8792d1e](https://github.com/dadiorchen/treetracker-web-map-client/commit/8792d1e1c3f1ede7aba962bcf5381f3d8fe8b9d1)) -* **playground:** add gradient color picker ([47206d7](https://github.com/dadiorchen/treetracker-web-map-client/commit/47206d7f473dcb574ef07145ce87db9c55eee158)) -* **playground:** add prop rules/validation ([e36388e](https://github.com/dadiorchen/treetracker-web-map-client/commit/e36388ee6a92543492e846eea3947127cd0b6a06)) -* **playground:** add square icon button ([e848ce7](https://github.com/dadiorchen/treetracker-web-map-client/commit/e848ce7fd8bf2ca6af3c4977307dd59de34b13b1)) -* **playground:** add switch prop component ([d2194bf](https://github.com/dadiorchen/treetracker-web-map-client/commit/d2194bff4b122ced82805328ab02ae796d63ff75)) -* **playground:** add tests ([77f8378](https://github.com/dadiorchen/treetracker-web-map-client/commit/77f8378b6e2a919cc964ac045ba24d6978a0fa30)) -* **playground:** basic font customization ([2b2dfb6](https://github.com/dadiorchen/treetracker-web-map-client/commit/2b2dfb6ecc27d38f2ef66e041317ae15fc4b43ec)) -* **playground:** basic typography components ([54938b4](https://github.com/dadiorchen/treetracker-web-map-client/commit/54938b4149325348335f8d6b742708ec7bf8b81d)) -* **playground:** can preview on mobile/desktop ([5e64a05](https://github.com/dadiorchen/treetracker-web-map-client/commit/5e64a0506952d770b5f355601e5763f210fc3d51)) -* **playground:** load/store theme fonts from local storage ([2d237fe](https://github.com/dadiorchen/treetracker-web-map-client/commit/2d237fe58ba94c84307843c64da50bb737e4b809)) -* **playground:** reduce font weights for loading ([735641b](https://github.com/dadiorchen/treetracker-web-map-client/commit/735641b85613cf9d53f8db48e335a83d59004681)) -* **playground:** update indication custom font style ([1470c2c](https://github.com/dadiorchen/treetracker-web-map-client/commit/1470c2c4feeb1de220df9ca03e78b575586c0253)) -* **playground:** update textarea styling ([143ee02](https://github.com/dadiorchen/treetracker-web-map-client/commit/143ee02862b90b2a68e0065efc8cf5bdcdaaa117)) -* put real data ([06d2d25](https://github.com/dadiorchen/treetracker-web-map-client/commit/06d2d255a64c3ad0518fb0b81e2e3e89c4a079e7)) -* readme about theme ([dc07e78](https://github.com/dadiorchen/treetracker-web-map-client/commit/dc07e78e7ccf383dd5f89856ffe381d3bf8e530c)) -* redirect legacy queries ([538ea54](https://github.com/dadiorchen/treetracker-web-map-client/commit/538ea544e25ed53cc0fa793a369377d2846b662f)) -* refactor pathResolver ([f266b1d](https://github.com/dadiorchen/treetracker-web-map-client/commit/f266b1ddc481c8459e1556b277abfcd7c84e5131)) -* refine mobile home page ([ab18cb8](https://github.com/dadiorchen/treetracker-web-map-client/commit/ab18cb8cc061c6f8070d4e47572a725d5206f9a2)) -* refine the home page desktop ([f1791a4](https://github.com/dadiorchen/treetracker-web-map-client/commit/f1791a49776101b0ca54b1a88421e44a2fb89d92)) -* release enable web map iste ([f5cdbf9](https://github.com/dadiorchen/treetracker-web-map-client/commit/f5cdbf9f26510f118e5d8c59b1e90438fc058cba)) -* remove dynamic navbar import ([a01005b](https://github.com/dadiorchen/treetracker-web-map-client/commit/a01005b6e4796a6169b655cb64e18d8d53b3d870)) -* remove useless files ([5cb3704](https://github.com/dadiorchen/treetracker-web-map-client/commit/5cb3704e14777a3e4b4f7e5d7ce2fc6d71b026e8)) -* removed fontWeight input from fonts section ([bd8a003](https://github.com/dadiorchen/treetracker-web-map-client/commit/bd8a0037d3c64496699a4a0bc8675f2f5aa564ea)) -* removed validation from fontWeights for now ([62881a4](https://github.com/dadiorchen/treetracker-web-map-client/commit/62881a4cea9282c686e69fcc2356d9fc576d265e)) -* rename deployment folder ([ec0c066](https://github.com/dadiorchen/treetracker-web-map-client/commit/ec0c066d875f05fbc23d1fe4302e1d868446569c)) -* render feature section only if data exists ([fc90ae0](https://github.com/dadiorchen/treetracker-web-map-client/commit/fc90ae049fe29668f0da9719771aaf3e4b81ce01)) -* replace menu icon ([abb6805](https://github.com/dadiorchen/treetracker-web-map-client/commit/abb6805b45d3b325e0278cc3848a17f51f996599)) -* resolve path with resolver ([7fe6099](https://github.com/dadiorchen/treetracker-web-map-client/commit/7fe609955e16ae9eaf3521cbc235767e3ea84875)) -* restored next/prev tree in tile version ([3f1894e](https://github.com/dadiorchen/treetracker-web-map-client/commit/3f1894e2968f356106d52d770e3c98c2a2ef19f6)) -* revert changelog ([95c1adf](https://github.com/dadiorchen/treetracker-web-map-client/commit/95c1adfb8252d686233bb47d5f2ef593d90743c6)) -* ribbons component added and theme spacing is being used ([ba6ec6d](https://github.com/dadiorchen/treetracker-web-map-client/commit/ba6ec6dfe179ce39b802ce6ce1d1b4998001874e)) -* run code mode along with eslint to fix import alias issue ([cfd3998](https://github.com/dadiorchen/treetracker-web-map-client/commit/cfd39982a9f2e67b0d3a0ef1c9809f07c0d4b589)) -* run prettier on commit ([5a43228](https://github.com/dadiorchen/treetracker-web-map-client/commit/5a4322813a77d4ffb8aff78741ca1a1d69602c66)) -* send performance metrics to google analytics ([f5a2748](https://github.com/dadiorchen/treetracker-web-map-client/commit/f5a2748ea8bb071733cb86b7f1030990319988b3)) -* set zoom control position ([934497d](https://github.com/dadiorchen/treetracker-web-map-client/commit/934497d772fc7d78a89db2c027965c33bbde50ba)) -* settings for core ([cf9c372](https://github.com/dadiorchen/treetracker-web-map-client/commit/cf9c372e1e820cfb76dde70bcda0808605b3fc42)) -* settings for leader board ([edbb054](https://github.com/dadiorchen/treetracker-web-map-client/commit/edbb0547d7d3f3ed9742d682a93cb654510b080e)) -* settings for prod ([1c08c2e](https://github.com/dadiorchen/treetracker-web-map-client/commit/1c08c2e67865326f1f6ffaeb59e84c5fda8abbb6)) -* share box ([25b158d](https://github.com/dadiorchen/treetracker-web-map-client/commit/25b158d0f934c6a8fe7dd5537f444543a5b3a259)) -* share button ([d5ed442](https://github.com/dadiorchen/treetracker-web-map-client/commit/d5ed442fe6c7dc8c8d8d8141deb0acadc364744f)) -* shift codemod before prettier ([53604ba](https://github.com/dadiorchen/treetracker-web-map-client/commit/53604baf304e67e2d71148ddb97289a007b1a7f5)) -* shorten token id ([060474a](https://github.com/dadiorchen/treetracker-web-map-client/commit/060474a581da1a81573e22fb8e0a7e1a370f4f89)) -* show maps current lat,lng, zoomLevel ([4b6cdda](https://github.com/dadiorchen/treetracker-web-map-client/commit/4b6cdda2e6750f5227487970400f01a7d876535f)) -* show timeline only on global context ([b2f54ad](https://github.com/dadiorchen/treetracker-web-map-client/commit/b2f54ad6c9b4fb1cc197141c4690a3aea760dfd6)) -* showed logo/avatar of the planter on tree page ([2d723b8](https://github.com/dadiorchen/treetracker-web-map-client/commit/2d723b8fc3eb92b70610ff5beee4e67b30f6168a)) -* showed continent name from planter data in planter page ([b3146b3](https://github.com/dadiorchen/treetracker-web-map-client/commit/b3146b3bd64c901d14b1fb76aa97251c9b00b5d6)) -* showed planter info on top of tree page ([4165068](https://github.com/dadiorchen/treetracker-web-map-client/commit/41650686ee094f86f9bb7c81e18f938ce000ce88)) -* showed planter info only if user came from planter page ([1703d59](https://github.com/dadiorchen/treetracker-web-map-client/commit/1703d59888b38e1aaa0e4694193f733a68e924d7)) -* single tree highlight ([10a8e86](https://github.com/dadiorchen/treetracker-web-map-client/commit/10a8e86271b8144f66cf17817ac1f154255d311a)) -* single tree selector ([65d6b89](https://github.com/dadiorchen/treetracker-web-map-client/commit/65d6b896f852f2d8c4cd413147082f5c5e4a2e2a)) -* solved the treeid=xxx problem ([2b16855](https://github.com/dadiorchen/treetracker-web-map-client/commit/2b16855f300afe8091dcfabec0fc2c5821b8e7ab)) -* star for any branch ([9df064f](https://github.com/dadiorchen/treetracker-web-map-client/commit/9df064ff7d124d03a698bc71479705f147c16cb7)) -* style tree age component; resolves [#105](https://github.com/dadiorchen/treetracker-web-map-client/issues/105) ([2e5712a](https://github.com/dadiorchen/treetracker-web-map-client/commit/2e5712a7dca04da9d1a2d333ee9e4b3dbe588efc)) -* support tile subdomain ([c592a5c](https://github.com/dadiorchen/treetracker-web-map-client/commit/c592a5c044375d0fa15b6bf499a15a349b340e6b)) -* support: freetown.treetracker.org ([4a54e69](https://github.com/dadiorchen/treetracker-web-map-client/commit/4a54e692cd80643ad38fd3827b7ebe5d7bc22b80)) -* switch to new core, be able to update url ([15785c5](https://github.com/dadiorchen/treetracker-web-map-client/commit/15785c5d6f2fa5615a28bb7363072a580498d578)) -* switch to new icons ([698e823](https://github.com/dadiorchen/treetracker-web-map-client/commit/698e8236259fe82addad64903f288784d2afe3c1)) -* switch to real api, top/tree/planter page ([ad0ab90](https://github.com/dadiorchen/treetracker-web-map-client/commit/ad0ab90b52c0f8cdd1cb1eeb39ca54102ef345f9)) -* switcher for leader board ([0ae02e8](https://github.com/dadiorchen/treetracker-web-map-client/commit/0ae02e8ab8e9865bcec14f21b704d485e30cc8e6)) -* the planter page ([d1ba8fc](https://github.com/dadiorchen/treetracker-web-map-client/commit/d1ba8fc5ca4ee7a3846cfccc08dda65fe69d22b6)) -* the tree, planter page(partial) ([8eb0bae](https://github.com/dadiorchen/treetracker-web-map-client/commit/8eb0bae992834e6849643ef0f1239ba81630c1ea)) -* **theme:** add icon alonside custom font ([6a3aef5](https://github.com/dadiorchen/treetracker-web-map-client/commit/6a3aef5187b92052e5b8b5d61d5eb6aa2bc2cc12)) -* tile debugger ([e879d4f](https://github.com/dadiorchen/treetracker-web-map-client/commit/e879d4ffb586efdd9f5d361af31d0f4a188fedf1)) -* timeline to fit new core ([e013aa9](https://github.com/dadiorchen/treetracker-web-map-client/commit/e013aa9d73834820efc2b68bed819cd3bd376ddb)) -* token page support load by treeid ([c502dc5](https://github.com/dadiorchen/treetracker-web-map-client/commit/c502dc5c3482aab8d5e501768c7f7d05c5a977ca)) -* token page, badget, wallet card, title ([6dbcdb4](https://github.com/dadiorchen/treetracker-web-map-client/commit/6dbcdb43f944331b3d1dc2063b71f88f7cabddbd)) -* token tags ([ade062b](https://github.com/dadiorchen/treetracker-web-map-client/commit/ade062b27ce8cb02e3aed227de6f1d07b17306dc)) -* **token:** add real planter data for transaction ([ef84131](https://github.com/dadiorchen/treetracker-web-map-client/commit/ef84131a6363e0ca0df1910adda1b5f2b1dc892d)) -* top page use real featured org,planter ([c0b2fae](https://github.com/dadiorchen/treetracker-web-map-client/commit/c0b2fae27867f2311aeac4df1f4854e8f8471627)) -* transaction history ([e596b03](https://github.com/dadiorchen/treetracker-web-map-client/commit/e596b03a7ccd6447b398e5d492845014c5f19c13)) -* tree as wallet background ([9b5c3c9](https://github.com/dadiorchen/treetracker-web-map-client/commit/9b5c3c9c019ba368b0b478e69cdc01e59e522f90)) -* tree captures collected ([20ac47e](https://github.com/dadiorchen/treetracker-web-map-client/commit/20ac47e16ea70cae88d17bc706628e02a80a55d1)) -* tree mobile page ([9b4fc62](https://github.com/dadiorchen/treetracker-web-map-client/commit/9b4fc622967f6d85f9bdc21608bdf23d8e780540)) -* tree page can handle org/planter ([38370fe](https://github.com/dadiorchen/treetracker-web-map-client/commit/38370fee2f0ae4424a494805efe0908116bc5dc6)) -* tree page enter wallet ([ddc2fec](https://github.com/dadiorchen/treetracker-web-map-client/commit/ddc2fec4bc57963e4cd02fefc76a07863998e69f)) -* tree species ([5625449](https://github.com/dadiorchen/treetracker-web-map-client/commit/562544949352408c8a867057b17c51a0b2c43a13)) -* treeid page development ([a0e8565](https://github.com/dadiorchen/treetracker-web-map-client/commit/a0e85659e120b6d998175bc748682097bc520d12)) -* **treeid:** added MUIv5 skeleton loader component for tree info panel ([6fd467a](https://github.com/dadiorchen/treetracker-web-map-client/commit/6fd467a0dc5487ec27ec5d64e2bf407fc9180fc0)) -* trigger version ([8b8503e](https://github.com/dadiorchen/treetracker-web-map-client/commit/8b8503e377b3c2d3363c79ba45d488f49e57d6e4)) -* try to ssr ([ceebc2c](https://github.com/dadiorchen/treetracker-web-map-client/commit/ceebc2c06e86b7c864ed690222a1f302f8c0cdbb)) -* **ui-wip:** added PlantQuote card component ([6ba9624](https://github.com/dadiorchen/treetracker-web-map-client/commit/6ba9624b803717083923672849ed88757f634c77)) -* **ui-wip:** added PlantQuote card component ([72c5e2f](https://github.com/dadiorchen/treetracker-web-map-client/commit/72c5e2f59683aa9ed1a0fdb5604ba22f34bbdb45)) -* updaed folder structurre and serach icon color ([5ef89fa](https://github.com/dadiorchen/treetracker-web-map-client/commit/5ef89fa525868d9317a0a2091da0b59cbe1f4c6e)) -* update codeshift file to handle all cases ([d6f80ea](https://github.com/dadiorchen/treetracker-web-map-client/commit/d6f80eaa0bd481aa7b2509a05cacf7694fee0629)) -* update count element styling ([5d92dc9](https://github.com/dadiorchen/treetracker-web-map-client/commit/5d92dc9bc4683f5dcff7c52783ab43083a332256)) -* update drawer title ([33a9ec2](https://github.com/dadiorchen/treetracker-web-map-client/commit/33a9ec2bbcd0eb5ed84b87fbaa5ba0c770de9401)) -* update home button to be dynamic for custom theme ([3b66e27](https://github.com/dadiorchen/treetracker-web-map-client/commit/3b66e2727e6270df8817c9b9e2981278fbd5a4a8)) -* update import for mapContext ([05b11bb](https://github.com/dadiorchen/treetracker-web-map-client/commit/05b11bb4f8e2f52c4d32dd65ff12c495c62ed42c)) -* update key name ([6703f1e](https://github.com/dadiorchen/treetracker-web-map-client/commit/6703f1eaf5d0e44549d8fa0719edda9e7ce4b423)) -* update text on country leader board ([35ddead](https://github.com/dadiorchen/treetracker-web-map-client/commit/35ddead52ef6933db0a3b3ebd62b2ff296788507)) -* update to the component design ([cab6747](https://github.com/dadiorchen/treetracker-web-map-client/commit/cab6747af552a7a58293b14736ce67e55161af44)) -* updated font selector component acc to new strurcture of font and weights ([ea5ae9b](https://github.com/dadiorchen/treetracker-web-map-client/commit/ea5ae9bad1ed9e8719c5679d52f7f8c3424211d5)) -* updated font structure acc -> {'name': weight[]} ([9bc94f1](https://github.com/dadiorchen/treetracker-web-map-client/commit/9bc94f1bd6a8fc86a8dc0785f2c0344fc75eb2c4)) -* updated fontWeight validation and fontWeight now loads whenever user types validated fontWeght ([9dd2d3c](https://github.com/dadiorchen/treetracker-web-map-client/commit/9dd2d3ca91260d9e5434eee3ceb305192131f09f)) -* updated test ([bce2df4](https://github.com/dadiorchen/treetracker-web-map-client/commit/bce2df449fea152f074e76cf20c0458f65fc61ec)) -* updated test acc to new font weight structure ([4825f19](https://github.com/dadiorchen/treetracker-web-map-client/commit/4825f196a51431c2251422f89e82df0a1b3d4a40)) -* updated unit tests according to new structure of font and weights ([a872e7b](https://github.com/dadiorchen/treetracker-web-map-client/commit/a872e7b4b02503de034adc07c3720c46ebd30f06)) -* updated url when user moves map ([90a1ac8](https://github.com/dadiorchen/treetracker-web-map-client/commit/90a1ac8f65112b20b24c75640abe3614f22a3068)) -* upgrade core ([4ecad65](https://github.com/dadiorchen/treetracker-web-map-client/commit/4ecad6573b0772403e3df7ca9e760b7be36bcdca)) -* upgrade core ([bc78691](https://github.com/dadiorchen/treetracker-web-map-client/commit/bc78691ac44b74c5f807c00b9854525bb364f28e)) -* upgrade core ([55194a9](https://github.com/dadiorchen/treetracker-web-map-client/commit/55194a93a592dfdda0b9eea0fcfb6c7ddf9ce54f)) -* upgrade core ([6fe722c](https://github.com/dadiorchen/treetracker-web-map-client/commit/6fe722ccab87328d4f0616ae3320c40594a7ec4f)) -* upgrade core ([ad0155d](https://github.com/dadiorchen/treetracker-web-map-client/commit/ad0155d3594a49ef634654c6ecc4247c5cc72f09)) -* upgrade core ([29e2509](https://github.com/dadiorchen/treetracker-web-map-client/commit/29e25091d9d34e6d7af447e19a4d7da1bb4dfeeb)) -* upgrade core ([88a78fb](https://github.com/dadiorchen/treetracker-web-map-client/commit/88a78fb6ac587e89a3ad3f72a3af5d201b748e39)) -* upgrade core ([f76ac18](https://github.com/dadiorchen/treetracker-web-map-client/commit/f76ac185cc4f45ece9b9ee55caee3651e50250fd)) -* upgrade core, select tree on planter+tree page ([2b170bb](https://github.com/dadiorchen/treetracker-web-map-client/commit/2b170bb8417659369447c8eea73a2fb897fdfdfa)) -* upgrade to 2.1.0, now every page are resonsible for render map ([b4b3d85](https://github.com/dadiorchen/treetracker-web-map-client/commit/b4b3d852d0b8f2d0d68d19c37d5a52066f8698fb)) -* upgrade to 2.2.0 core ([6b1e9a1](https://github.com/dadiorchen/treetracker-web-map-client/commit/6b1e9a1755f21b67e2aeb75a0793491d0f533ec9)) -* upgrade web map core ([57b2cd3](https://github.com/dadiorchen/treetracker-web-map-client/commit/57b2cd326d10146394dd43a4129c6adb8b84414a)) -* use axios mock ([035c8aa](https://github.com/dadiorchen/treetracker-web-map-client/commit/035c8aa264dddc260c2885731fce72ba96d136ef)) -* use base root ([ede7036](https://github.com/dadiorchen/treetracker-web-map-client/commit/ede70366fad1ecfbaf2bfc50266db8af81650e68)) -* use base root ([34171ae](https://github.com/dadiorchen/treetracker-web-map-client/commit/34171ae3b9a8b61c307fbe9dcc2eec45af882c38)) -* use default rerelease branches ([ebc19b0](https://github.com/dadiorchen/treetracker-web-map-client/commit/ebc19b02f7d3714cdc0b0d2f5765b5472156c0c3)) -* use getLocationString ([800a828](https://github.com/dadiorchen/treetracker-web-map-client/commit/800a82878395c208c4795e544262554a3446ddf3)) -* use getLocationString ([8536e7b](https://github.com/dadiorchen/treetracker-web-map-client/commit/8536e7b04a988a0d93fc320afbb887f346b547ea)) -* use getLocationString ([e3b5565](https://github.com/dadiorchen/treetracker-web-map-client/commit/e3b5565d4a739cec61afedd59b2355563cc84df8)) -* use real org to poplulate the planter page ([d969b45](https://github.com/dadiorchen/treetracker-web-map-client/commit/d969b457879fa6ce62cc0d253e52a2bffd9ac8d8)) -* used image api for tree thumbnail images ([83c300c](https://github.com/dadiorchen/treetracker-web-map-client/commit/83c300c20c4af50d09fbe34730aac303725eceda)) -* user can now load font weights from typography component ([bbe98a5](https://github.com/dadiorchen/treetracker-web-map-client/commit/bbe98a5eafb3dba043a2c260bb284051f821ed91)) -* **utils:** add location string formatter ([657d907](https://github.com/dadiorchen/treetracker-web-map-client/commit/657d907e9d8e02a9779e039884c8fe1fb4b9f256)) -* wallet by name ([dab5ce9](https://github.com/dadiorchen/treetracker-web-map-client/commit/dab5ce9546523510d3c1cf422396ad6ca00cdb2e)) -* zoom controls ([f4b6d13](https://github.com/dadiorchen/treetracker-web-map-client/commit/f4b6d136bb4e67c2893efab68a66c190c0b84723)) - +- initial view wrong [#1332](https://github.com/Greenstand/treetracker-web-map-client/issues/1332) ([baa8749](https://github.com/Greenstand/treetracker-web-map-client/commit/baa87491ec8adcafd8c79db45cfeef7b3a3d80b7)) +- update tree tag value ([1b7b37d](https://github.com/Greenstand/treetracker-web-map-client/commit/1b7b37de228b5322007ec0462bbfa87abdd44a6a)) +- [#158](https://github.com/Greenstand/treetracker-web-map-client/issues/158) flash glitch ([87a2b2c](https://github.com/Greenstand/treetracker-web-map-client/commit/87a2b2c50f821e21e7048833dbbcbfb346df6288)) +- [#261](https://github.com/Greenstand/treetracker-web-map-client/issues/261) error on clicking tree icon ([8cc07b6](https://github.com/Greenstand/treetracker-web-map-client/commit/8cc07b6f9c32143d352eb73d3241b07c56d6443c)) +- [#537](https://github.com/Greenstand/treetracker-web-map-client/issues/537) ([943bc95](https://github.com/Greenstand/treetracker-web-map-client/commit/943bc95ca68c25ed14e9c362ee8f418a5abeab89)) +- [#559](https://github.com/Greenstand/treetracker-web-map-client/issues/559) ([1c167b4](https://github.com/Greenstand/treetracker-web-map-client/commit/1c167b4bdf12598adf844ee0a32cb318ffc7eacc)) +- [#583](https://github.com/Greenstand/treetracker-web-map-client/issues/583) ([776cc95](https://github.com/Greenstand/treetracker-web-map-client/commit/776cc9562294e70cc6f1fa469fd80ce3640617d2)) +- [#610](https://github.com/Greenstand/treetracker-web-map-client/issues/610) ([b6f4b4c](https://github.com/Greenstand/treetracker-web-map-client/commit/b6f4b4cb278cd4fdbf6cca5af593a1f9d9c78139)) +- 000 is valid font weight option ([630e49d](https://github.com/Greenstand/treetracker-web-map-client/commit/630e49d9efbacf9e2fb2cd3b0a8e53626f502c42)) +- **275:** add test to requestAPI, and modify requestAPI to use axios instead of fetch ([2ec8a73](https://github.com/Greenstand/treetracker-web-map-client/commit/2ec8a735426203ea8c94596853228d2913cc7d3b)) +- 500 page showing in production env ([07a914f](https://github.com/Greenstand/treetracker-web-map-client/commit/07a914fab5eaeccb20b7bd6d72bdd9acd9dd5d42)) +- abbreviate numbers for CustomWorldMap on wallet page ([8f31850](https://github.com/Greenstand/treetracker-web-map-client/commit/8f31850bf0f27477f804ed98c294a3d5109cfb1b)) +- about in org ([66d8235](https://github.com/Greenstand/treetracker-web-map-client/commit/66d82359d162641549deb7b79c8dd13ad552f9fb)) +- about order ([665d07a](https://github.com/Greenstand/treetracker-web-map-client/commit/665d07a51399ab8a869c5ae6825db6e645565eeb)) +- action problem ([cfb2a28](https://github.com/Greenstand/treetracker-web-map-client/commit/cfb2a2878375879dc72f2cb7acf82c806c85c566)) +- adapted PlanterQuote card for mobile ([ab9db3f](https://github.com/Greenstand/treetracker-web-map-client/commit/ab9db3f405b38d422379c1927c894a842623d807)) +- add alignitems ([3993fef](https://github.com/Greenstand/treetracker-web-map-client/commit/3993fef69667cc8809ffa7075f6e702e5825670a)) +- add async await ([4234380](https://github.com/Greenstand/treetracker-web-map-client/commit/4234380e16e38cf257ca879785260098a39e8a19)) +- add google fonts link to Head ([b7c0333](https://github.com/Greenstand/treetracker-web-map-client/commit/b7c0333f0aa1a3ca2f1f074c511e1df5927e89e4)) +- add infoWrapper ([cd15cdd](https://github.com/Greenstand/treetracker-web-map-client/commit/cd15cdda0a0812759f7b31b2cddaf9447e34ba21)) +- add is-ci for husky prepare script ([18a0cd8](https://github.com/Greenstand/treetracker-web-map-client/commit/18a0cd87b7fdb6382fedaf69bf08823e51cda64b)) +- add key in getStorageValue ([3ad00b0](https://github.com/Greenstand/treetracker-web-map-client/commit/3ad00b0a3f951c45e47c67505b7cd273e4a435ea)) +- add margin ([662082f](https://github.com/Greenstand/treetracker-web-map-client/commit/662082f753ed3ceec60c1fbbbf20cd2f6a17f269)) +- add mask ([3ece3ff](https://github.com/Greenstand/treetracker-web-map-client/commit/3ece3ff3e26f9d745bf76f330cdd1491e5b55ff6)) +- add style to match figma font ([2352cee](https://github.com/Greenstand/treetracker-web-map-client/commit/2352ceefc42be069fee140f155c333e3c21250b8)) +- add styles ([9101809](https://github.com/Greenstand/treetracker-web-map-client/commit/9101809982b829814272eff5114ae2569801b8c5)) +- add tests ([38a9b3e](https://github.com/Greenstand/treetracker-web-map-client/commit/38a9b3e2bab6b06d338ed170ff7562152b236ef0)) +- add tree image component ([24f88ca](https://github.com/Greenstand/treetracker-web-map-client/commit/24f88ca15859f7adb3aa2e51639348427979a44b)) +- add type text / calledWith ([c9e5918](https://github.com/Greenstand/treetracker-web-map-client/commit/c9e5918d2e72c77705eb417f6ed8fda2a1a2bca6)) +- added --no-install to git hooks ([241df92](https://github.com/Greenstand/treetracker-web-map-client/commit/241df92cb97a3aa9fc9d7ca9d656f323e94ce605)) +- added a simple mount test for theme in cypress ([4babe1f](https://github.com/Greenstand/treetracker-web-map-client/commit/4babe1f93fd1fc0dc3cc7dcd50cba65f331a5080)) +- added args for debounce func ([3c0c387](https://github.com/Greenstand/treetracker-web-map-client/commit/3c0c387f9c6f3ef5965e44a0ea91b344dc093510)) +- added cursor pointer on slider hover ([70aefac](https://github.com/Greenstand/treetracker-web-map-client/commit/70aefac95be10e4fbb33c3e769674237ea944ee9)) +- added cursor pointers to each reset ([cf929a0](https://github.com/Greenstand/treetracker-web-map-client/commit/cf929a03cbb7d94b97a6cd30d2574297ebdc82ee)) +- added image domain setting for next/image ([a9d7041](https://github.com/Greenstand/treetracker-web-map-client/commit/a9d7041e1529d195e35caf8aa4ce866e537de5f8)) +- added image mocking to [organizationid].cy.js ([76bbf6a](https://github.com/Greenstand/treetracker-web-map-client/commit/76bbf6aa9c2e0b4c7a1377f7b8d0929d1f7eec10)) +- added integration test for wallet add ([d4d10f8](https://github.com/Greenstand/treetracker-web-map-client/commit/d4d10f8a9b1572a41fb379722c8888855e3cadc7)) +- added Minted on Date ([42bd9f6](https://github.com/Greenstand/treetracker-web-map-client/commit/42bd9f6d7fa921bd668e8bb68c950bb592f0dea6)) +- added missing font ([68423e8](https://github.com/Greenstand/treetracker-web-map-client/commit/68423e81826ac1c17e53badaac3a3304d11db008)) +- added more img placeholders ([8345be3](https://github.com/Greenstand/treetracker-web-map-client/commit/8345be3a7b3be854bd977443e2c1c42debd86dfe)) +- added organization logo ([f1e40a3](https://github.com/Greenstand/treetracker-web-map-client/commit/f1e40a3625393e3ff79d768f9e2c783a047e9078)) +- added placeholder to tokekid and reverted svg ([ed67b5e](https://github.com/Greenstand/treetracker-web-map-client/commit/ed67b5e859eab032e057888e8da50fb8accec756)) +- added PlanterQuote component to the organization's page ([8b1caa4](https://github.com/Greenstand/treetracker-web-map-client/commit/8b1caa43d9123b475fa70edce79322909cf31cce)) +- added tree slider ([82738ed](https://github.com/Greenstand/treetracker-web-map-client/commit/82738ed582f80a8df34273f53450fff48848ce67)) +- added unit test cases and corrected color ([566e6f7](https://github.com/Greenstand/treetracker-web-map-client/commit/566e6f7a20fbdd9ad93bc06508776f0410ec4d2a)) +- **admin/theme:** added theme dependency to useEffect ([801098f](https://github.com/Greenstand/treetracker-web-map-client/commit/801098f2a5af14637cca8b263d0b288aaf7573a9)) +- **admin/theme:** reset typography vals correctly ([c5b5364](https://github.com/Greenstand/treetracker-web-map-client/commit/c5b5364f81e224d9a8497c76033ab30eaafffc68)) +- align cards on the same line ([e82b88c](https://github.com/Greenstand/treetracker-web-map-client/commit/e82b88c1747d95e898c711b42c45d84c0bc090b9)) +- align cards on the wallets page ([74323ed](https://github.com/Greenstand/treetracker-web-map-client/commit/74323ed7faba8a0d0e4a9c6e129d80f59d1e9197)) +- align icon and text ([cb43af4](https://github.com/Greenstand/treetracker-web-map-client/commit/cb43af4443f40155db228bd1b706c6eb524dd4b8)) +- alignment issue with textfield ([37103b0](https://github.com/Greenstand/treetracker-web-map-client/commit/37103b07a9cfbf67d82e9f20a0608572756d3f3c)) +- ambassidor + next path problem ([d3b4916](https://github.com/Greenstand/treetracker-web-map-client/commit/d3b4916b801d0feebb80229ab68ef75f72100325)) +- auto-refreshing the page in dev mode [#255](https://github.com/Greenstand/treetracker-web-map-client/issues/255) ([a626d58](https://github.com/Greenstand/treetracker-web-map-client/commit/a626d5870161e52772cf03d14bda31160ac70ed0)) +- avoid refersh token page ([7aea3f4](https://github.com/Greenstand/treetracker-web-map-client/commit/7aea3f45637ffc370d8f45b97388cdcc6f138c1c)) +- axios problem ([36fb949](https://github.com/Greenstand/treetracker-web-map-client/commit/36fb9494e59771e48afa117d352df56e0a34cb1e)) +- borken test by delete sidepanel ([ffade2a](https://github.com/Greenstand/treetracker-web-map-client/commit/ffade2a09b5e0282e01226ab1a96362701198e93)) +- broken app component ([b865327](https://github.com/Greenstand/treetracker-web-map-client/commit/b86532766759c4e454285c8e981af74b8981c8e5)) +- broken component tests ([3d637d7](https://github.com/Greenstand/treetracker-web-map-client/commit/3d637d7d34ba17dab86fe870d5ca3832f0226f05)) +- broken country jump ([afa4832](https://github.com/Greenstand/treetracker-web-map-client/commit/afa4832a4043c1c85657fdbf05ae3811ad938aa3)) +- broken cypress test routes ([2ddaf91](https://github.com/Greenstand/treetracker-web-map-client/commit/2ddaf919e492737035fda9a8586bb68d623ad403)) +- broken file of token page ([2399342](https://github.com/Greenstand/treetracker-web-map-client/commit/2399342e213e55d75e96f1e38e5cf87e63a45650)) +- broken int test ([93cab57](https://github.com/Greenstand/treetracker-web-map-client/commit/93cab57dd5747a3046bbeba9f80cebe24158aa34)) +- broken layout for longer names ([39bb1a8](https://github.com/Greenstand/treetracker-web-map-client/commit/39bb1a810372e5d0ad23e015cddf156a7872790a)) +- broken test ([5e33d8d](https://github.com/Greenstand/treetracker-web-map-client/commit/5e33d8d13d9aa922620230dee8359d311e683455)) +- broken test ([bb16c8c](https://github.com/Greenstand/treetracker-web-map-client/commit/bb16c8c3080c735b32c67273c216642d7debc5b7)) +- broken test ([0cdc386](https://github.com/Greenstand/treetracker-web-map-client/commit/0cdc386b329a6639ed7057967113e79cb0ebf7aa)) +- broken test ([079dd55](https://github.com/Greenstand/treetracker-web-map-client/commit/079dd5591d01bfc1fd5ed3d57b08cff2ebeee935)) +- broken test ([e90e291](https://github.com/Greenstand/treetracker-web-map-client/commit/e90e2910ec27f830684a70e428c8a926cd1bc54f)) +- broken test ([8749b3e](https://github.com/Greenstand/treetracker-web-map-client/commit/8749b3e1cb462754318dd54057af5f2d542bd53d)) +- broken tests ([01e17f6](https://github.com/Greenstand/treetracker-web-map-client/commit/01e17f65380870b7861105c91e0ae461cf2b496b)) +- brought the reset button up to the label line ([0137051](https://github.com/Greenstand/treetracker-web-map-client/commit/013705101a13a50bfd0161dd704a0d69bfcc550f)) +- bug in progress bar ([e380184](https://github.com/Greenstand/treetracker-web-map-client/commit/e3801842e5a3fee4832fb51a221f9a5156563a67)) +- build github actions ([e737566](https://github.com/Greenstand/treetracker-web-map-client/commit/e7375661eff2a3e77135c7d5dacd9796b27bdc07)) +- c solve conflicts ([3ec8aa1](https://github.com/Greenstand/treetracker-web-map-client/commit/3ec8aa1767a4ee485c2b7ae9471b590ab135a8eb)) +- c solve top.js conflicts ([efc2149](https://github.com/Greenstand/treetracker-web-map-client/commit/efc2149cafe781e448874e2122bf9902021d2d53)) +- can click tree on planter page ([293875e](https://github.com/Greenstand/treetracker-web-map-client/commit/293875e5f2c82eeb7b3e3cb6f3d4223ddd814e13)) +- can not click tree on org/tree page ([c11a809](https://github.com/Greenstand/treetracker-web-map-client/commit/c11a809e1cf7580ee9a2c544e3c0e758f9316b9a)) +- can not jump to token page ([5e94df8](https://github.com/Greenstand/treetracker-web-map-client/commit/5e94df8dd16ac2d064a15051eaa58408bde233e8)) +- can not run cypress successfully ([0c965c2](https://github.com/Greenstand/treetracker-web-map-client/commit/0c965c25e6150542ca1390faf49e83d52c5fc9b8)) +- centered the image ([cc77254](https://github.com/Greenstand/treetracker-web-map-client/commit/cc77254b32a88ca7b1acbdfaa9c2cbb151dcb4f7)) +- change api route ([24c9cd5](https://github.com/Greenstand/treetracker-web-map-client/commit/24c9cd59f8925ff82017b96cc8bb90117d9da3fe)) +- change button text color on hover ([212e4bc](https://github.com/Greenstand/treetracker-web-map-client/commit/212e4bc2ba45587d97a01588ef98be8693085947)) +- change css from LayoutEmbed.js instead of style.css ([a4471f2](https://github.com/Greenstand/treetracker-web-map-client/commit/a4471f20c069ca12c57646444431353b5298b65f)) +- change font style to italic ([58ffd97](https://github.com/Greenstand/treetracker-web-map-client/commit/58ffd9791f0ca2fe1dae283df198ac61783f0918)) +- change iconSuite parameter ([b9ff50f](https://github.com/Greenstand/treetracker-web-map-client/commit/b9ff50f3f145cc1507c5c4b5392379f398fde02f)) +- change names variables & function ([5b0f8c0](https://github.com/Greenstand/treetracker-web-map-client/commit/5b0f8c0971dd7bae98f2d85b581d3957fa27db2d)) +- change top e2e test url to relative ([d41f0c3](https://github.com/Greenstand/treetracker-web-map-client/commit/d41f0c3f2e8e8e0f4fe56d252a7d5460cb5b7ede)) +- change tss-1shtwbt-year to muitypography-h6 ([028c458](https://github.com/Greenstand/treetracker-web-map-client/commit/028c458be68ef2306b310fb895ef5639d2714325)) +- change tss-rvai9x-container to tss-19g14hs-container ([baeb304](https://github.com/Greenstand/treetracker-web-map-client/commit/baeb304f4456e5d5d7ecd0c0785ea9ebcbf7dd97)) +- changed layout root to flex based ([d9f2b57](https://github.com/Greenstand/treetracker-web-map-client/commit/d9f2b57388b5f3d0083cb643dce40867db97a6d9)) +- changed text content and text style for mobile ([5dfd0b5](https://github.com/Greenstand/treetracker-web-map-client/commit/5dfd0b54d106b8afcb7ececcb41702c49516c8fc)) +- changedd a mistake I made on the img file ([2de5ccd](https://github.com/Greenstand/treetracker-web-map-client/commit/2de5ccdd06fedc9c27b231674057b00df6558849)) +- changes to mobile logo click event ([3c0a640](https://github.com/Greenstand/treetracker-web-map-client/commit/3c0a640e3456c2cfb13bcc5cbb9382c7e40a07c4)) +- changes to zoom on mobile issue ([c516ab7](https://github.com/Greenstand/treetracker-web-map-client/commit/c516ab76a0bd9a5bf2b784d2a7dc32aff3085b84)) +- checkout wrong branch ([a51050b](https://github.com/Greenstand/treetracker-web-map-client/commit/a51050b7567132065a641540fd3da0c8b40d5b95)) +- ci problem ([a77e06d](https://github.com/Greenstand/treetracker-web-map-client/commit/a77e06d8b6a6d54bf07fcb8052f92ca86e7c3a57)), closes [/github.com/cypress-io/cypress/issues/1313#issuecomment-409342834](https://github.com//github.com/cypress-io/cypress/issues/1313/issues/issuecomment-409342834) +- cleaned up unnecessary things ([04b3716](https://github.com/Greenstand/treetracker-web-map-client/commit/04b37163b8cb99658ede8dc65c14ed105ac2a25b)) +- click tree icon error ([71628c8](https://github.com/Greenstand/treetracker-web-map-client/commit/71628c8102ef682b45350fc5ed0c5fe9f9fd4c0a)) +- client side render ([7d0757e](https://github.com/Greenstand/treetracker-web-map-client/commit/7d0757e97a6c1e169d60285d6214563a569bddcc)) +- close country board because it is too slow on prod ([f65aea7](https://github.com/Greenstand/treetracker-web-map-client/commit/f65aea7808ed39e0d6dbaa67b967604636cde085)) +- commented out updateUrl( ) ([136eaf6](https://github.com/Greenstand/treetracker-web-map-client/commit/136eaf67efab48ca8bde25b536da0247a3e10f29)) +- component test Navbar.cy.js passes ([f7d0f52](https://github.com/Greenstand/treetracker-web-map-client/commit/f7d0f529be034d3df03a5c4955611f37b5b549b8)) +- component test Share.cy.js passes ([7e544ad](https://github.com/Greenstand/treetracker-web-map-client/commit/7e544adf0682e467c404ea9a766ba244038a1619)) +- configured cypress for next w/ webpack 5 ([22ebe97](https://github.com/Greenstand/treetracker-web-map-client/commit/22ebe973177903aed3d7cdcf0b98b4d6e4f7f72f)) +- conflicts resolved ([be6bb2a](https://github.com/Greenstand/treetracker-web-map-client/commit/be6bb2a394b52b7df57f2757265a34901d2b5963)) +- copy embed code from clipboard ([60f1f0b](https://github.com/Greenstand/treetracker-web-map-client/commit/60f1f0ba72e6b6fa56fa2977b3a1a3b2b4e6eb0a)) +- correct button text color ([99a51d9](https://github.com/Greenstand/treetracker-web-map-client/commit/99a51d93f1e97c58508f35f122b20b80bf2d8324)) +- correct letter spacing value format ([e1f079f](https://github.com/Greenstand/treetracker-web-map-client/commit/e1f079fe369f73a6567adeb4ffb0a5d0804d5996)) +- corrected failing test for FontAddInput.cy.js ([dd6df14](https://github.com/Greenstand/treetracker-web-map-client/commit/dd6df1467f42c0856fce66f3c479612a61850e3c)) +- corrected image rotation ([fa1730e](https://github.com/Greenstand/treetracker-web-map-client/commit/fa1730e352378fff70b0821d52d523c0b21219de)) +- corrected the dates to when they were created ([98d3b59](https://github.com/Greenstand/treetracker-web-map-client/commit/98d3b59ccd97b727288655bbdace416f3445c476)) +- **css:** Change MUI theme default letter spacing to 0. Fixes issue [#434](https://github.com/Greenstand/treetracker-web-map-client/issues/434) ([53f6cc9](https://github.com/Greenstand/treetracker-web-map-client/commit/53f6cc999e8a007ad5ecf474ca5f712f3708b486)) +- **css:** Use stylesOverride on global theme targeting the Typography component to set default letter spacing to 0. ([bc87963](https://github.com/Greenstand/treetracker-web-map-client/commit/bc8796356689f39aee290ef861c3e0aa2c84f5da)), closes [#434](https://github.com/Greenstand/treetracker-web-map-client/issues/434) +- custom card icon theme color ([5db7d49](https://github.com/Greenstand/treetracker-web-map-client/commit/5db7d49283534aed03d6e00f9862dae614f37c70)) +- **custom-card:** height not same if text too long ([48d8d9a](https://github.com/Greenstand/treetracker-web-map-client/commit/48d8d9a9f87c19f41ef2b4ed16d3a1259d430f69)) +- **cwm-editor:** double nested if statement ([fc6f00a](https://github.com/Greenstand/treetracker-web-map-client/commit/fc6f00a40346b7bb218d2a0bf3a26d0ecf4ebd5a)) +- **cwm-editor:** input value not updating after initial value ([b1bd7f6](https://github.com/Greenstand/treetracker-web-map-client/commit/b1bd7f6f7cc8a89f0c1d121e6250790ab5e2b920)) +- cypress now usable with next ([0496f4b](https://github.com/Greenstand/treetracker-web-map-client/commit/0496f4b4d7bad3e5569c21f23acc3bd967b0268d)) +- cypress test error in FeaturedTreesSlider ([27445f1](https://github.com/Greenstand/treetracker-web-map-client/commit/27445f1482405c99176245758e193787e57f3a72)) +- cypress unit tests ([c502d6d](https://github.com/Greenstand/treetracker-web-map-client/commit/c502d6df384bc1cc13899e43ef918548d22c476d)) +- cypress-ct font loading ([949ce10](https://github.com/Greenstand/treetracker-web-map-client/commit/949ce1010086313e7241b10264b97ea51924b82e)) +- **dashboard:** drag drop error with server side rendering ([59e0d6a](https://github.com/Greenstand/treetracker-web-map-client/commit/59e0d6afd718afdd473e6cf9fc41ccd4c91bf0ad)) +- **dashboard:** test not using required ConfigProvider ([1f5b2a2](https://github.com/Greenstand/treetracker-web-map-client/commit/1f5b2a2493c35dc4fdfd7b4a760a0781496b19f8)) +- **dashboard:** test not working with updated component ([ca6234a](https://github.com/Greenstand/treetracker-web-map-client/commit/ca6234a86294f762ea8dfda4a7a4757cbf2d44ab)) +- **dashboard:** typos ([e341d17](https://github.com/Greenstand/treetracker-web-map-client/commit/e341d1779d2b564a1b4be07ff4e263e384fd2acb)) +- **dashboard:** update button showing after clicked ([29807d9](https://github.com/Greenstand/treetracker-web-map-client/commit/29807d961a8c6268097a72526d34a86d1073e133)) +- date on org page ([e0123fe](https://github.com/Greenstand/treetracker-web-map-client/commit/e0123fe0ec89cb98befaab62a24857b8f6600e76)) +- delete console.logs ([58a8cc6](https://github.com/Greenstand/treetracker-web-map-client/commit/58a8cc69e223e3e276d14cf977ef675985aa3481)) +- delete duplicate test file ([530d3d7](https://github.com/Greenstand/treetracker-web-map-client/commit/530d3d740c1cb9a76d829bc3dc5d91f22537d780)) +- deleted duplicate leaderboard test file ([47e34bb](https://github.com/Greenstand/treetracker-web-map-client/commit/47e34bbe94a3088b307c896b78ac30584faf439f)) +- deleted some comments ([205566d](https://github.com/Greenstand/treetracker-web-map-client/commit/205566d7861a49f174dc54805bd57d9ecba0dabc)) +- deploy test ([b0805bd](https://github.com/Greenstand/treetracker-web-map-client/commit/b0805bdde414d05dc1b4b13fc22ed24793c66db6)) +- deploy test ([a7fbfb8](https://github.com/Greenstand/treetracker-web-map-client/commit/a7fbfb8a14424df88106eb192acd799ecd6bd8c7)) +- deploy test ([c64782a](https://github.com/Greenstand/treetracker-web-map-client/commit/c64782adc2b0811ac6853dac4653d5d278eaaff9)) +- deploy to prod add git config ([313ab21](https://github.com/Greenstand/treetracker-web-map-client/commit/313ab2114ac0c535a76e46a3f846b7758b0c9dd8)) +- deployment error ([9ba8290](https://github.com/Greenstand/treetracker-web-map-client/commit/9ba82907dc9613f90bf7576d4b2f477ad569e70f)) +- detailed log ([651cda9](https://github.com/Greenstand/treetracker-web-map-client/commit/651cda9e441bb5761858e99a5a342252684682e5)) +- dialog not fullscreen, header spacing ([afd2aba](https://github.com/Greenstand/treetracker-web-map-client/commit/afd2abaab99465940c133253bb4fb7b27eb055ee)) +- disable country boad ([9863e01](https://github.com/Greenstand/treetracker-web-map-client/commit/9863e018ba425541eb942c0db0d208c3fa398cdd)) +- display total on org page ([f266eb1](https://github.com/Greenstand/treetracker-web-map-client/commit/f266eb10c46406d74305072547108b969d8023a0)) +- document in SSR error ([285e1cd](https://github.com/Greenstand/treetracker-web-map-client/commit/285e1cdfec9c48f1f55c8ab84462e7c73f03ca0f)) +- drawer animation not working on embed ([1a0d14b](https://github.com/Greenstand/treetracker-web-map-client/commit/1a0d14b16324440006c43ea742b7a3afbd73eb2f)) +- drawer expand icon color ([7948562](https://github.com/Greenstand/treetracker-web-map-client/commit/794856298fc6e0247b6955c248abcda3c74085cc)) +- drawer incorrect initial theme mode ([7728124](https://github.com/Greenstand/treetracker-web-map-client/commit/7728124a52f74252a8cc10595b5cf3e9ef7d7ef6)) +- drawer title not clickable ([3ae8578](https://github.com/Greenstand/treetracker-web-map-client/commit/3ae85781b27069e847abceb3c2454f56e2e7ca9f)) +- **drawer:** rounded border radius when docked ([def4df3](https://github.com/Greenstand/treetracker-web-map-client/commit/def4df30d1a0d312c1621627cd8b118f818e7b7f)) +- **drawer:** unmount runtime error ([56c440e](https://github.com/Greenstand/treetracker-web-map-client/commit/56c440ecf11c75a2c24e1e03884fec5715d61849)) +- duplicate back button on tree page ([3bcfac0](https://github.com/Greenstand/treetracker-web-map-client/commit/3bcfac009f64962e91e057b4cd4ce717e9822d73)) +- embed incorrect logo ([93779a3](https://github.com/Greenstand/treetracker-web-map-client/commit/93779a397e299d2dcc9e86e984959ef06ee7fb7d)) +- embed logo incorrect url ([2085397](https://github.com/Greenstand/treetracker-web-map-client/commit/2085397d1444516f1b0c0ef666b929c870117013)) +- embeded background was white in dark mode ([cae4d35](https://github.com/Greenstand/treetracker-web-map-client/commit/cae4d350091de7040d6113a0c726ccfe07d504b9)) +- enable global board ([56422da](https://github.com/Greenstand/treetracker-web-map-client/commit/56422daf09ee82cbde77d6289acd7cf2edebe2fd)) +- ensure card heights remain same ([ef5c619](https://github.com/Greenstand/treetracker-web-map-client/commit/ef5c61920d2d6657b401a5822b2e970e380c5a5d)) +- env var not a valid boolean ([11b1426](https://github.com/Greenstand/treetracker-web-map-client/commit/11b142697bf3c414b7be422733165c53d6a09a10)) +- eslint errors ([254e585](https://github.com/Greenstand/treetracker-web-map-client/commit/254e585c8aef7740e93f85df2196b67886720e8b)) +- faied test ([eacc51e](https://github.com/Greenstand/treetracker-web-map-client/commit/eacc51e8a0839c36a6c77f1c290372790412f356)) +- failed lock file ([a238bdb](https://github.com/Greenstand/treetracker-web-map-client/commit/a238bdb9422cb3553e5273db971c266eb4b9af75)) +- **featured-card:** update spacings conform design ([b1757df](https://github.com/Greenstand/treetracker-web-map-client/commit/b1757dff692c9ff95aef80d31e90e56388a5976c)) +- featuredPlanterSlider ([394bbb8](https://github.com/Greenstand/treetracker-web-map-client/commit/394bbb81c54ddd8d42062a4c852a188aa963e086)) +- filter close by default ([456fd22](https://github.com/Greenstand/treetracker-web-map-client/commit/456fd222b5c1db100604c4c009044a77dcd6bff9)) +- final fix, added && conditional ([39821e5](https://github.com/Greenstand/treetracker-web-map-client/commit/39821e5e84eb753e4ba08dba57165e3798d2dfa8)) +- firefox svg not visible ([aac904e](https://github.com/Greenstand/treetracker-web-map-client/commit/aac904e9718e4f159ae29082cd596bca5fae5639)) +- fix BackButton styles ([b2cf156](https://github.com/Greenstand/treetracker-web-map-client/commit/b2cf156d53a7a0ca2817a85fa4c1ebf3d9e157da)) +- fix error caused by targetTouches[0] ([eb63cd5](https://github.com/Greenstand/treetracker-web-map-client/commit/eb63cd5e9c8de55ccf649db7184d11b6fe58c9d4)) +- fix merge conflicts ([722b2c4](https://github.com/Greenstand/treetracker-web-map-client/commit/722b2c40b549ead45725e254ae8b41dbbfe94f6d)) +- fix to the ribbons margin ([d0b4b1e](https://github.com/Greenstand/treetracker-web-map-client/commit/d0b4b1e9a4c43d15552b6d8bbec02a95d0a9c1da)) +- fix to the ribbons margin ([0357b2c](https://github.com/Greenstand/treetracker-web-map-client/commit/0357b2c2c1633d9088dbdc903d616de0f4d6f079)) +- fix to the ribbons margin ([13b0207](https://github.com/Greenstand/treetracker-web-map-client/commit/13b02072ea8f33f7c8707d0b8dfb3f62674731c1)) +- fixed changes talked about ([a4640a1](https://github.com/Greenstand/treetracker-web-map-client/commit/a4640a1af6afa80ea4750041d8f995206c23dd31)) +- fixed eslint error ([7e08f78](https://github.com/Greenstand/treetracker-web-map-client/commit/7e08f789d280129466471db7ae48afb6bf9ffa94)) +- fixed eslint error ([c916984](https://github.com/Greenstand/treetracker-web-map-client/commit/c91698474a4f5e3d94e51996689fc8dffe149ca3)) +- fixed mobile display issues ([efeb7c8](https://github.com/Greenstand/treetracker-web-map-client/commit/efeb7c8319a3257138ede848dc0cc52ef2db0cee)) +- fixed some verbage "wallet created on" mobile ([6ca133d](https://github.com/Greenstand/treetracker-web-map-client/commit/6ca133daf64bc3c97954b454eb9116252ab1c097)) +- fixed ssr mocking in organization page test ([3324bf3](https://github.com/Greenstand/treetracker-web-map-client/commit/3324bf35be5299897b95dfe088150a3322aa0a38)) +- fixed the impact graph to the new svg icon ([ce39e8b](https://github.com/Greenstand/treetracker-web-map-client/commit/ce39e8bedb2070a3abeddcedd946b88a57c291d9)) +- fixed typos ([8b9b04e](https://github.com/Greenstand/treetracker-web-map-client/commit/8b9b04e1e08671977ee02b0c47189e681dc78cf3)) +- fixes CL issue with cypress ([a51a73e](https://github.com/Greenstand/treetracker-web-map-client/commit/a51a73e94042739df99312f39b78da1121f0c7e2)) +- follow-redirects security warning ([a02249a](https://github.com/Greenstand/treetracker-web-map-client/commit/a02249ad6d273c8072ca65426a36e37800b91a92)) +- follow-redirects security warning ([00d2c79](https://github.com/Greenstand/treetracker-web-map-client/commit/00d2c79ff71be0a42e5d64cc4c1fddaab0e99fd5)) +- full path pushed when URL updates ([4fc870e](https://github.com/Greenstand/treetracker-web-map-client/commit/4fc870e047d9c6f24bfeb2a2d1dee11c3c2af9a3)) +- google font imports ([5eebed0](https://github.com/Greenstand/treetracker-web-map-client/commit/5eebed072421f45dd0764ca13fc8527bc7a3e149)) +- home page styles ([335906a](https://github.com/Greenstand/treetracker-web-map-client/commit/335906a607024675e6a103818c5fd7dcc5a7d219)) +- home useEmbed merge conflict ([3148536](https://github.com/Greenstand/treetracker-web-map-client/commit/314853688fb9d9d6a0a0837860e8975bf97587ce)) +- homepage padding ([eb3d46b](https://github.com/Greenstand/treetracker-web-map-client/commit/eb3d46b8029378a44f464536f9651cc4b844df61)) +- homepage padding ([98f1f69](https://github.com/Greenstand/treetracker-web-map-client/commit/98f1f6956912a4d05a95abfddd22a3e50cfc5be9)) +- homepage padding ([c043035](https://github.com/Greenstand/treetracker-web-map-client/commit/c0430355784cc1177f5ab8faadc06722db50b2de)) +- homepage padding ([b27c32a](https://github.com/Greenstand/treetracker-web-map-client/commit/b27c32a774aca8069f51961813a20aea61d7bf06)) +- **home:** replace hard-coded vals with palette vals ([635941f](https://github.com/Greenstand/treetracker-web-map-client/commit/635941f87b3556fd21945667a046f75d590c0785)) +- **hooks:** localstorage initial state is undefined ([78ad0fb](https://github.com/Greenstand/treetracker-web-map-client/commit/78ad0fb47a878192c3e5a0a667e315b632b84121)) +- hover on button ([d4253f9](https://github.com/Greenstand/treetracker-web-map-client/commit/d4253f991f639cd1c0b89a580735cc2029b08514)) +- i've removed a useeffect that we don't need ([4abbad0](https://github.com/Greenstand/treetracker-web-map-client/commit/4abbad049bfb1470d1427716022835f4bf12bbce)) +- icon no dark mode support ([51b329b](https://github.com/Greenstand/treetracker-web-map-client/commit/51b329b74890fd13cd2496f7f75863f4f79cf1b9)) +- image height in embded ([915adcc](https://github.com/Greenstand/treetracker-web-map-client/commit/915adcc8b9d176901563f1f3d90d3bfde58c3d12)) +- image url ([e7c0354](https://github.com/Greenstand/treetracker-web-map-client/commit/e7c03542bbd0ea7a479707e82dbcf425d5c20825)) +- image wrapper component uses format date string ([d69d736](https://github.com/Greenstand/treetracker-web-map-client/commit/d69d736548e3d713a79b1adfdb4af14449718dcf)) +- impact graph mobile height ([c443b5e](https://github.com/Greenstand/treetracker-web-map-client/commit/c443b5e92c1b44377c1f1c827d863995d895127e)) +- impact section icon colors ([8e7baed](https://github.com/Greenstand/treetracker-web-map-client/commit/8e7baedc31525c4b66f92b53beae676e35d6e968)) +- impact section icon heights ([97317a1](https://github.com/Greenstand/treetracker-web-map-client/commit/97317a14f4e9d259e96fd55cc1e8df46d1263f95)) +- **impact:** cards not vertically aligned ([69be32a](https://github.com/Greenstand/treetracker-web-map-client/commit/69be32a0a0a41f098ebd3fbfe30c2345458b8824)) +- implement the filter dates ([87a28ce](https://github.com/Greenstand/treetracker-web-map-client/commit/87a28ce75efc36bf8f96fb2bc948f4a991528def)) +- import useTheme from material ([dd03e46](https://github.com/Greenstand/treetracker-web-map-client/commit/dd03e468ddfd28bfa20280b7e88e8c07564bfda5)) +- improve svg handling ([6d6256e](https://github.com/Greenstand/treetracker-web-map-client/commit/6d6256e11cb000654d0d4fe1653c2423e5ee30f0)) +- improved svg loading ([a9d7a50](https://github.com/Greenstand/treetracker-web-map-client/commit/a9d7a503c0fb5cf90046c6b70ca26fbce60deb35)) +- inconsistent height of cards ([7d4b207](https://github.com/Greenstand/treetracker-web-map-client/commit/7d4b20764e4ade74c77af828acf881b98d104cda)) +- incorrect import ([154bb09](https://github.com/Greenstand/treetracker-web-map-client/commit/154bb0972e0484deaeba74236ab26c825807e9b9)) +- increase test timeout for CustomImageWrapper ([dc5220c](https://github.com/Greenstand/treetracker-web-map-client/commit/dc5220c7643f5230bb5a39b1d444197c8e79194a)) +- increased opacity and centered slider button ([d459dd6](https://github.com/Greenstand/treetracker-web-map-client/commit/d459dd615bdb72cea41302e43960b63721f0e9ca)) +- initial theme mode from localstorage not working ([09b8688](https://github.com/Greenstand/treetracker-web-map-client/commit/09b8688ef46eea984a7422662deb596d06e37e20)) +- installed missing eslint-react-plugin ([1c21716](https://github.com/Greenstand/treetracker-web-map-client/commit/1c217160b5a049e8eeb71c75c3410fcb6d4c477d)) +- introduce a 'noBackground' prop to 'ProfileAvatar' component ([f110c4e](https://github.com/Greenstand/treetracker-web-map-client/commit/f110c4e6cee85f05fc6870f6991eb19075ad8f9f)) +- inverted initial theme mode ([c5336a5](https://github.com/Greenstand/treetracker-web-map-client/commit/c5336a53e82748a14f541d730fce853415ff07ad)) +- isr usage of msw ([38cbd8d](https://github.com/Greenstand/treetracker-web-map-client/commit/38cbd8d58e2c6a1a631e7aa7ae988ee191fded2e)) +- issue [#254](https://github.com/Greenstand/treetracker-web-map-client/issues/254) revocer nearest tree feature ([42c920a](https://github.com/Greenstand/treetracker-web-map-client/commit/42c920a057d7ce232d12de26c868c6599d768730)) +- issue [#305](https://github.com/Greenstand/treetracker-web-map-client/issues/305) mount the component with theme ([9b6d332](https://github.com/Greenstand/treetracker-web-map-client/commit/9b6d332103333fa2edb7816f76a67c1e885f8df7)) +- issue [#317](https://github.com/Greenstand/treetracker-web-map-client/issues/317) navbar disappeared ([703b0dc](https://github.com/Greenstand/treetracker-web-map-client/commit/703b0dc5c7a0f2ec0afe23a44ca6178132747792)) +- issue [#359](https://github.com/Greenstand/treetracker-web-map-client/issues/359) makeStyles import error ([bc3cbe6](https://github.com/Greenstand/treetracker-web-map-client/commit/bc3cbe624e6b5458346c72b612c2d6253b27e251)) +- issue [#366](https://github.com/Greenstand/treetracker-web-map-client/issues/366) org image stretched ([fc465e2](https://github.com/Greenstand/treetracker-web-map-client/commit/fc465e20727d84505a314d3b529fd195e86c2c16)) +- issue [#392](https://github.com/Greenstand/treetracker-web-map-client/issues/392) Miscellaneous minor errors/warnings ([2f2b7f8](https://github.com/Greenstand/treetracker-web-map-client/commit/2f2b7f80938a772a952d65cd110a1579c0bfa2a0)) +- issue [#421](https://github.com/Greenstand/treetracker-web-map-client/issues/421) world map should not be clickable ([f64f247](https://github.com/Greenstand/treetracker-web-map-client/commit/f64f247f412c13e48444e75fc30140eb885727f9)) +- issue [#449](https://github.com/Greenstand/treetracker-web-map-client/issues/449) broken flags ([446369e](https://github.com/Greenstand/treetracker-web-map-client/commit/446369ed75b2d0e18873ebb268112ecd12d375c4)) +- issue [#469](https://github.com/Greenstand/treetracker-web-map-client/issues/469) missing title for slider image ([e236da1](https://github.com/Greenstand/treetracker-web-map-client/commit/e236da128cb4aa9783e1432ae614881583f24bfd)) +- issue [#484](https://github.com/Greenstand/treetracker-web-map-client/issues/484) duplicate section ([fa8f10e](https://github.com/Greenstand/treetracker-web-map-client/commit/fa8f10e1bf86f4a07841a9eb8f745833ed822166)) +- issue [#495](https://github.com/Greenstand/treetracker-web-map-client/issues/495) move copyright panel behind drawer ([3d8165f](https://github.com/Greenstand/treetracker-web-map-client/commit/3d8165f2c29d09a1c54e74035abd48a23c839a0d)) +- issue [#497](https://github.com/Greenstand/treetracker-web-map-client/issues/497) move theme button ([dd2f7b5](https://github.com/Greenstand/treetracker-web-map-client/commit/dd2f7b50b9e6b12aea5ae0aca0121154c3389e25)) +- issue # 250 broken cypress test ([8df1fd7](https://github.com/Greenstand/treetracker-web-map-client/commit/8df1fd7f363005eedc98a82aa4dfee12a6a26863)) +- issue with cypress CL commands ([14af171](https://github.com/Greenstand/treetracker-web-map-client/commit/14af171c53528da58e0e9c7971ffead1026709d5)) +- jump to contry ([9b5900c](https://github.com/Greenstand/treetracker-web-map-client/commit/9b5900c3dcb82bbcdd90c645ec57ad3c5df45884)) +- jump to country ([30814ed](https://github.com/Greenstand/treetracker-web-map-client/commit/30814edb7c8c0349b0c983469b39cd22c689b650)) +- kebab case warning ([05350d3](https://github.com/Greenstand/treetracker-web-map-client/commit/05350d35ab68d2442590123ba1aceb1db6bec78b)) +- key string in getStorage ([1945d65](https://github.com/Greenstand/treetracker-web-map-client/commit/1945d65cb673c4c7d669f73dd80c5481a3ba01e2)) +- layout fixes and improvements ([5cf0ebc](https://github.com/Greenstand/treetracker-web-map-client/commit/5cf0ebc61adb7e5439f3a8f40189ed4f068d74f5)) +- leaderboard fetch on continent ([883ae25](https://github.com/Greenstand/treetracker-web-map-client/commit/883ae253c26aa37598fe78f782df361226a4c0b7)) +- left slider button not moving cards to inital position ([5b82346](https://github.com/Greenstand/treetracker-web-map-client/commit/5b823463509f7499a4e549e7b1db442e700e53ed)) +- lint errors ([37f39c4](https://github.com/Greenstand/treetracker-web-map-client/commit/37f39c4a103da88cfe1238d0ad9ed7a45cd5da0a)) +- lint-staged settings ([96c4730](https://github.com/Greenstand/treetracker-web-map-client/commit/96c4730ef301610d6f720f042148880604c0791f)) +- lint-staged settings ([ddacd4b](https://github.com/Greenstand/treetracker-web-map-client/commit/ddacd4b3ff3930103875d69bfd79fadd2b10b272)) +- lint-staged settings ([7d6dafe](https://github.com/Greenstand/treetracker-web-map-client/commit/7d6dafe46630d9a1606c7d5139cef1cfc6703459)) +- lint-staged settings ([93dbb14](https://github.com/Greenstand/treetracker-web-map-client/commit/93dbb143548b5908e38936e8a2cac9940f964b78)) +- lock file ([d9494f4](https://github.com/Greenstand/treetracker-web-map-client/commit/d9494f48054ea518fff37d4822b43172de56eef7)) +- lock file ([3535ba6](https://github.com/Greenstand/treetracker-web-map-client/commit/3535ba64d00e14057385d0694804ca502c371f7e)) +- lock file update ([db35e7c](https://github.com/Greenstand/treetracker-web-map-client/commit/db35e7c620b0a5e47e6bf0911dd6f770e2a0cc01)) +- lock update ([0f87a87](https://github.com/Greenstand/treetracker-web-map-client/commit/0f87a8750f53df76571b95a0a10b6a10e8410ee4)) +- lockfile ([3fbaa43](https://github.com/Greenstand/treetracker-web-map-client/commit/3fbaa4334d94ad8b0a46752d8e36c869f0853f7b)) +- logo in tree page ([90c6ce7](https://github.com/Greenstand/treetracker-web-map-client/commit/90c6ce72770ad223dc750b40b9621fe2d837b557)) +- lost context ([36419c7](https://github.com/Greenstand/treetracker-web-map-client/commit/36419c7718cdc4995a82701e205c134baa551274)) +- lowered zindex so button is below drawer.js ([925f0c2](https://github.com/Greenstand/treetracker-web-map-client/commit/925f0c24c944108647912e60a13cd0f2518f7300)) +- made cursor to pointer on slider hover ([c4ba92b](https://github.com/Greenstand/treetracker-web-map-client/commit/c4ba92b0d99a8f6a8a712e6260922d87831d5e0e)) +- made images look better ([8eff9ba](https://github.com/Greenstand/treetracker-web-map-client/commit/8eff9babafbc2b6b333b062648fa5202ed54af4d)) +- made some css adjustments ([abcaf9e](https://github.com/Greenstand/treetracker-web-map-client/commit/abcaf9effb60e8044835e529835a467a464e5914)) +- make css selector more specific [#552](https://github.com/Greenstand/treetracker-web-map-client/issues/552) ([16d33b1](https://github.com/Greenstand/treetracker-web-map-client/commit/16d33b12b840069ffb75b71de6e60f9ee856f87f)) +- make slider button visible ([3bbffa8](https://github.com/Greenstand/treetracker-web-map-client/commit/3bbffa8d0b7e8231605493d47302a789bbb5a866)) +- map container size problem ([ad7cd43](https://github.com/Greenstand/treetracker-web-map-client/commit/ad7cd43182f4cf950064447534da76e3b2f1bdca)) +- map import ([b84046b](https://github.com/Greenstand/treetracker-web-map-client/commit/b84046beaa930dfc426290f1c3beaf77c1164ab8)) +- mapname domain problem ([b25e895](https://github.com/Greenstand/treetracker-web-map-client/commit/b25e8956eee942050638104a31e97f3d50ee3492)) +- mapname domain problem ([0dc6bbd](https://github.com/Greenstand/treetracker-web-map-client/commit/0dc6bbdaeb5ac1b051649c1806c9eb38b1dd3259)) +- menu ([705b8b0](https://github.com/Greenstand/treetracker-web-map-client/commit/705b8b0ac292a4d543b8e13a59b45f720f903b8e)) +- menubar handle click function on mobile screen ([ed90f71](https://github.com/Greenstand/treetracker-web-map-client/commit/ed90f71b83dda210c28ebf258242cf0bb5a9150b)) +- merge conflict ([54269f8](https://github.com/Greenstand/treetracker-web-map-client/commit/54269f8214dd17733b187dfd2451a6f980a7f36a)) +- merge conflicts ([b9990ce](https://github.com/Greenstand/treetracker-web-map-client/commit/b9990ce6a6967881fc2c344f089263e58c3bc672)) +- merge syntax error ([b926f63](https://github.com/Greenstand/treetracker-web-map-client/commit/b926f63f014600b679afe3274b433d64e4e217c7)) +- merge syntax errors ([2c2454f](https://github.com/Greenstand/treetracker-web-map-client/commit/2c2454f3337ceff989a541789a9ff277e693c042)) +- merged conflicts ([b79ed9f](https://github.com/Greenstand/treetracker-web-map-client/commit/b79ed9fa7c3f989d052ac2b2169d959edd3f243f)) +- mergin conflicts ([ef137d1](https://github.com/Greenstand/treetracker-web-map-client/commit/ef137d1e2a6e3fe9f70661b9f49dfa84d39027ec)) +- miss-aligned text ([74b4167](https://github.com/Greenstand/treetracker-web-map-client/commit/74b41676661316804f0ad7ddf26a1a39690a1f7a)) +- missing flags for 2 countries added back ([338bcb0](https://github.com/Greenstand/treetracker-web-map-client/commit/338bcb0dbf016de47b5b993c473a844f490ecc57)) +- missing icon for token page ([b855a31](https://github.com/Greenstand/treetracker-web-map-client/commit/b855a312ba547f12a3934ba750c816f9c98221e7)) +- missing speciss name in token page ([5a8ad38](https://github.com/Greenstand/treetracker-web-map-client/commit/5a8ad3882216830f1bc3450ea876f92ab7b77246)) +- mission style ([b3c9898](https://github.com/Greenstand/treetracker-web-map-client/commit/b3c9898b2e0ab579ce5f07acaa2e0ea156df8e08)) +- more adjustments ([baa7f31](https://github.com/Greenstand/treetracker-web-map-client/commit/baa7f31d94d593928e43a5ffaf49de332fdd458a)) +- move message location ([32f9ce3](https://github.com/Greenstand/treetracker-web-map-client/commit/32f9ce3f5591f5906f42b9dbea5217709202be01)) +- navbar image imports ([de8a411](https://github.com/Greenstand/treetracker-web-map-client/commit/de8a41160d44544b46d1636579707e5a47f550ce)) +- navigate to top of the page on route change ([19516e4](https://github.com/Greenstand/treetracker-web-map-client/commit/19516e495f3115e72cec4b5d6ee841a07a101332)) +- new data structure issues ([f9ade81](https://github.com/Greenstand/treetracker-web-map-client/commit/f9ade81d9925332d7e9e4c6452fc44ea70125af2)) +- next build ([8865544](https://github.com/Greenstand/treetracker-web-map-client/commit/88655448736934743ea59b05743fc2ecded09acc)) +- next.js setting ([c5b4459](https://github.com/Greenstand/treetracker-web-map-client/commit/c5b4459cb5752a4e76dce038f635b3ded7723ea0)) +- no data on emebed home page ([fda09c8](https://github.com/Greenstand/treetracker-web-map-client/commit/fda09c89d5d0b9a5254a30650c7699de958a2b21)) +- no org error case ([d5698d2](https://github.com/Greenstand/treetracker-web-map-client/commit/d5698d29507342332fffba8edbb17333cd525bba)) +- no planter logo on embed ([7361d55](https://github.com/Greenstand/treetracker-web-map-client/commit/7361d55c4d6f5735fd7059c21ac6194db035fe2d)) +- nock persist ([597a2be](https://github.com/Greenstand/treetracker-web-map-client/commit/597a2bef4d660c38df12ee52960ff0eff13339ff)) +- number on map ([dfd99e1](https://github.com/Greenstand/treetracker-web-map-client/commit/dfd99e163849e22cccc7ce731eeaeef270377f94)) +- number on planter page ([1300d8c](https://github.com/Greenstand/treetracker-web-map-client/commit/1300d8ccf8a60a7ce3916cca81751ee6b7acf0c6)) +- open leader board for dev ([72da9c8](https://github.com/Greenstand/treetracker-web-map-client/commit/72da9c85b276747c00e5f5ae7b54932f6c8a6994)) +- org map ([d016232](https://github.com/Greenstand/treetracker-web-map-client/commit/d01623227f5611772da50b0ded4803424b85059d)) +- overlap on leaderboard ([7d56185](https://github.com/Greenstand/treetracker-web-map-client/commit/7d56185315f86345f1b9422827dced20041dad04)) +- page flash ([e3493d4](https://github.com/Greenstand/treetracker-web-map-client/commit/e3493d42489c8ccf3c1f29d037dad55006c90418)) +- pages layout for drawer ([58a4a5e](https://github.com/Greenstand/treetracker-web-map-client/commit/58a4a5e0a84eb7a4b6028530aec16c5e8cf81a06)) +- pass link prop for wallets ([05056d9](https://github.com/Greenstand/treetracker-web-map-client/commit/05056d9605e3b8873e0a527e0d3801da83d2c5bc)) +- passed isMobile prop from parent to the respective component ([3957e10](https://github.com/Greenstand/treetracker-web-map-client/commit/3957e104bfd56094baa98784cda55bfd4ae95fe5)) +- path base problem ([7d840da](https://github.com/Greenstand/treetracker-web-map-client/commit/7d840da84a0dcf6655b6237abe03b7602d8220a9)) +- path resolver unit tests ([2d5be26](https://github.com/Greenstand/treetracker-web-map-client/commit/2d5be263fc4f10b5a0dc6ef86978208ba650da8f)) +- pathname regex causing 404s ([9fd313b](https://github.com/Greenstand/treetracker-web-map-client/commit/9fd313b35b93b33d58d844d991b27f95ea74475f)) +- pathResolver support query params ([4e6140f](https://github.com/Greenstand/treetracker-web-map-client/commit/4e6140f5a366e38d679f27aabc315d38d68f4265)) +- planter incorrect image rotation at organization page ([2b417b8](https://github.com/Greenstand/treetracker-web-map-client/commit/2b417b802b73073536bd6a56569048ed81e2c8d9)) +- planter link on top page ([83bdf2d](https://github.com/Greenstand/treetracker-web-map-client/commit/83bdf2dd9212ab129688c401ba94b4de0d0a77eb)) +- planter quote location issue ([2e9dc3b](https://github.com/Greenstand/treetracker-web-map-client/commit/2e9dc3b5685436f96f4ca46f0e161168c3b369ae)) +- **planter-quote:** layout not conform design ([cd77800](https://github.com/Greenstand/treetracker-web-map-client/commit/cd77800c0eca5733432bc52ec168b013c42707bd)) +- **planter:** image rotation incorrect ([5de1b3b](https://github.com/Greenstand/treetracker-web-map-client/commit/5de1b3b6b4951a104e75d226695b2b189a2e127f)) +- **planter:** null gives invalid css value ([9ef7b7f](https://github.com/Greenstand/treetracker-web-map-client/commit/9ef7b7fb2ad51ed46f99ee70609806f8196ec46c)) +- **playground:** custom fonts not first if loaded from storage ([43660b7](https://github.com/Greenstand/treetracker-web-map-client/commit/43660b7dca0c7da30b70e4bfb57e281007ce353c)) +- **playground:** custom fonts not showing on preview ([a1e554d](https://github.com/Greenstand/treetracker-web-map-client/commit/a1e554d2dff1aa24ab90685827cd0aa4a491d036)) +- **playground:** font weights are stored as number and string causing for duplication ([337e49b](https://github.com/Greenstand/treetracker-web-map-client/commit/337e49b1fab0b71f1364d494d212eead1f3a80cf)) +- **playground:** iframe border ([ce5d618](https://github.com/Greenstand/treetracker-web-map-client/commit/ce5d6180debcbaa5ed0afa5396001cddb168eadb)) +- **playground:** iframe not working on live dev/prod env ([6960021](https://github.com/Greenstand/treetracker-web-map-client/commit/6960021de299a8221a760f6abbf71df033b14c2d)) +- **playground:** preview button not working ([4be399c](https://github.com/Greenstand/treetracker-web-map-client/commit/4be399c270f517258c5772e99f5b46743771429d)) +- **playground:** prop values incorrect on startup ([2679e5a](https://github.com/Greenstand/treetracker-web-map-client/commit/2679e5a5c07beb79e810d5fe4a4d133576b6a6a5)) +- **playground:** runtime error prop dark ([3092fb6](https://github.com/Greenstand/treetracker-web-map-client/commit/3092fb6e6f9d3d71271b1175a3457f84b6265fea)) +- **playground:** runtime error prop dark ([b344819](https://github.com/Greenstand/treetracker-web-map-client/commit/b3448199be0e813c9af90177a5b073b3e444f000)) +- **playground:** skip gradient validation ([82bb7af](https://github.com/Greenstand/treetracker-web-map-client/commit/82bb7af8f093f65222e5976bac69fa647ea40adc)) +- **playground:** spacing not in custom theme ([f58af00](https://github.com/Greenstand/treetracker-web-map-client/commit/f58af00c8a1e7b56bebe994cdf78565bc0c90fad)) +- **playground:** temp theme [#672](https://github.com/Greenstand/treetracker-web-map-client/issues/672) ([2cf398e](https://github.com/Greenstand/treetracker-web-map-client/commit/2cf398e2acc4a734d5d3df685b02bfbe9db5eb6c)) +- **playground:** textarea not updating theme values ([52a7cc5](https://github.com/Greenstand/treetracker-web-map-client/commit/52a7cc5b0012075186af871b7a7c27e84a1bed81)) +- **playground:** update tests according to new implementation ([bc9a999](https://github.com/Greenstand/treetracker-web-map-client/commit/bc9a999c250a761e058ab65288f6272eeba8eb2e)) +- problem in path resolver ([e274166](https://github.com/Greenstand/treetracker-web-map-client/commit/e274166e192d12b03bc7d9aea2ff50542e23d31c)) +- range in release rc ([87ee4ba](https://github.com/Greenstand/treetracker-web-map-client/commit/87ee4ba0ab3eac16097cd4049bfdff1617ccc6c7)) +- range in release rc ([cfda759](https://github.com/Greenstand/treetracker-web-map-client/commit/cfda759dd5d94fe0edbd4f1c42db6840b5ffc024)) +- react prop warning ([6758bcd](https://github.com/Greenstand/treetracker-web-map-client/commit/6758bcd903babb670f3e261f3024366040b5c073)) +- react prop warning ([6bb838e](https://github.com/Greenstand/treetracker-web-map-client/commit/6bb838e43728e2a572d9ce04c18102ad3118f27d)) +- react sx prop warning ([f562671](https://github.com/Greenstand/treetracker-web-map-client/commit/f562671464f7fe7d951d2b48eead108d91e353a1)) +- react unique key warning ([2660cf5](https://github.com/Greenstand/treetracker-web-map-client/commit/2660cf52edf8fb36d469ce98fffd58ac242246d9)) +- readme wsl instructions for cypress ([a605a98](https://github.com/Greenstand/treetracker-web-map-client/commit/a605a98a754ee556f6a1d04b6d4db9ff6b68dc5f)) +- refactored code ([193347c](https://github.com/Greenstand/treetracker-web-map-client/commit/193347cd670e869fff992070a2c05dbec192ba8b)) +- refine planter image [#463](https://github.com/Greenstand/treetracker-web-map-client/issues/463) ([8a6126f](https://github.com/Greenstand/treetracker-web-map-client/commit/8a6126f10730a709b1de921a8d7afce7cc9d0bd9)) +- reformat code ([1348328](https://github.com/Greenstand/treetracker-web-map-client/commit/134832898425a55788d27e930c2a0e0cc5a04ee2)) +- release test ([499f7ee](https://github.com/Greenstand/treetracker-web-map-client/commit/499f7eec6aac3a25395063eb4c2fba54bbfc0701)) +- release test ([aeb6c4f](https://github.com/Greenstand/treetracker-web-map-client/commit/aeb6c4f5d5e186c79114031dee20deb6dbc990ff)) +- release test ([9638de1](https://github.com/Greenstand/treetracker-web-map-client/commit/9638de1a2b6b22d82c7646ae7f8a3e20c959839e)) +- remove redundant test ([3ab6ad7](https://github.com/Greenstand/treetracker-web-map-client/commit/3ab6ad784d373ee08e95e5fbda5e809ac0af31a0)) +- remove 'boxSizing' from 'noBackground' ([9aeed48](https://github.com/Greenstand/treetracker-web-map-client/commit/9aeed48846a25e476fcc82e376973f6ea8a3816a)) +- remove abbreviate number from organization page ([03ce1c9](https://github.com/Greenstand/treetracker-web-map-client/commit/03ce1c9b27b5deccbb89297c2f172b5ee031391f)) +- remove border from card ([932832f](https://github.com/Greenstand/treetracker-web-map-client/commit/932832f734520bc041c6ea5b5f156d446e30e85b)) +- remove conditional ([0bcdbeb](https://github.com/Greenstand/treetracker-web-map-client/commit/0bcdbeb162518291a896cd943c45877fb5793082)) +- remove div nested in p ([6beccd0](https://github.com/Greenstand/treetracker-web-map-client/commit/6beccd03ab8d51b20edcd054f8757d56bec3047e)) +- remove extra addition of prefix ([069db75](https://github.com/Greenstand/treetracker-web-map-client/commit/069db7502672a8f2ab9ab04e29f2d29bd2eca076)) +- remove formatDisplayDates ([f28c94a](https://github.com/Greenstand/treetracker-web-map-client/commit/f28c94a0a043c8238eb745e7d0a2b313a635ff31)) +- remove icon from deprecated component ([6b479ee](https://github.com/Greenstand/treetracker-web-map-client/commit/6b479ee98e4166acad2223853de40e140e0d68de)) +- remove passhref prop ([24e5a3b](https://github.com/Greenstand/treetracker-web-map-client/commit/24e5a3b9d550d3ba6cc26e56918205dba960cc6d)) +- remove scientific name from the card ([e8e0311](https://github.com/Greenstand/treetracker-web-map-client/commit/e8e0311ac3c77060ee020e01a8d70a6559dd81bb)) +- remove setstartdate / setenddate ([9c93a3c](https://github.com/Greenstand/treetracker-web-map-client/commit/9c93a3cacb5ab420bb87d8cb07e64a27e570d8f7)) +- remove showmessage ([01d082f](https://github.com/Greenstand/treetracker-web-map-client/commit/01d082f0012202f0f9f398a4673c7f016ead87ff)) +- remove title / typography ([15d5cc5](https://github.com/Greenstand/treetracker-web-map-client/commit/15d5cc5c7653c3e0d10e423fb0488eef7e8b75f4)) +- remove tooltip and add name ([92dae04](https://github.com/Greenstand/treetracker-web-map-client/commit/92dae040e3ba029beaeaf0d65253d26373f7286f)) +- remove top page fix ([edf99b4](https://github.com/Greenstand/treetracker-web-map-client/commit/edf99b493071e4ac64af714efb830d1aea5e3f4f)) +- remove underline below planter name ([13b7769](https://github.com/Greenstand/treetracker-web-map-client/commit/13b776914b8f6fe068a5e63744d25d7dda4d9eef)) +- remove underscore style from Link component ([3c48be7](https://github.com/Greenstand/treetracker-web-map-client/commit/3c48be7e4da2a37c0540f29aaf97a007b65456c0)) +- remove unnecessary links ([04d428a](https://github.com/Greenstand/treetracker-web-map-client/commit/04d428a0e1dbc2d58e604b6a8cf5f367dc6ff963)) +- remove unused styles ([24300de](https://github.com/Greenstand/treetracker-web-map-client/commit/24300de153476ab57ac5e76b29a45e09726b28fc)) +- remove unused test ([380cc0a](https://github.com/Greenstand/treetracker-web-map-client/commit/380cc0a5534938bd4d8d369ee4aaf6dc02d47dd3)) +- remove useless code ([d492f36](https://github.com/Greenstand/treetracker-web-map-client/commit/d492f36f19332b7a4bf180b90bc933304de4de55)) +- remove useless code ([3f8ed2d](https://github.com/Greenstand/treetracker-web-map-client/commit/3f8ed2d8b37fc50f2fa7a41c000124af4a1d9cfa)) +- remove yarn.lock file ([52cb787](https://github.com/Greenstand/treetracker-web-map-client/commit/52cb787f5af5ec99c611d7760fbc1b77b994544e)) +- remove zoom control panel [#93](https://github.com/Greenstand/treetracker-web-map-client/issues/93) ([7eabb42](https://github.com/Greenstand/treetracker-web-map-client/commit/7eabb42ff3fbc44aefdcf90c48d5a75dfae2fb6d)) +- removed absolute positioning ([606a683](https://github.com/Greenstand/treetracker-web-map-client/commit/606a6838c353a368ebd2b31ed6da2e1823704fde)) +- removed cache from token page ([84a504b](https://github.com/Greenstand/treetracker-web-map-client/commit/84a504b8264d156125feb2f5197548465843b97a)) +- removed fallback ([f12da4c](https://github.com/Greenstand/treetracker-web-map-client/commit/f12da4ce51a43ddbf58e187737bb1b036c2dc577)) +- removed my console.log ([8a30185](https://github.com/Greenstand/treetracker-web-map-client/commit/8a30185098ca0b7c84461aa5669eef12fff738d3)) +- removed unnecarry styling and components ([473562e](https://github.com/Greenstand/treetracker-web-map-client/commit/473562ef8bad3821fcbd7cedb861aa529d273163)) +- removed unused import and made tooltip text dynamic ([5a6f51b](https://github.com/Greenstand/treetracker-web-map-client/commit/5a6f51b9d43a85ee855682531a43e969d5778290)) +- removed useless style ([1183877](https://github.com/Greenstand/treetracker-web-map-client/commit/11838777119107e25d1a25da285f475c2fa14bd3)) +- rename treeimage to customimagewrapper ([8997eca](https://github.com/Greenstand/treetracker-web-map-client/commit/8997eca9699c4e897035266281980c58e2174344)) +- rename treeimage to customimagewrapper ([64b55e5](https://github.com/Greenstand/treetracker-web-map-client/commit/64b55e54118a75e52cc03dc6edbab9f03af0262d)) +- repeated forward slash in href ([3ebc3c0](https://github.com/Greenstand/treetracker-web-map-client/commit/3ebc3c09076687edfb7ba0eb6873e289ec145a77)) +- replace a tag with Link component ([c94af26](https://github.com/Greenstand/treetracker-web-map-client/commit/c94af2642410c1a67dfd9ae402f64f2842902f04)) +- replace flex with inline-flex ([9129c68](https://github.com/Greenstand/treetracker-web-map-client/commit/9129c68601d744aea4a033a8e1bbc0d97402dafa)) +- replace hardcoded continent value for CustomWorldMap ([8f5b3df](https://github.com/Greenstand/treetracker-web-map-client/commit/8f5b3dfee19ccc1ce56fe98bc415d9dc773973b7)) +- replace makestyles ([fe0fbd1](https://github.com/Greenstand/treetracker-web-map-client/commit/fe0fbd1af04dfdccd41b7b59d9d5b12fe76c54f0)) +- replace string prop with date and format it ([f08a9df](https://github.com/Greenstand/treetracker-web-map-client/commit/f08a9dfbef1b2ba66d247ede141fd5ad3004fb9b)) +- replace the fallbacks image in the information card with a logo [#1331](https://github.com/Greenstand/treetracker-web-map-client/issues/1331) ([3713a80](https://github.com/Greenstand/treetracker-web-map-client/commit/3713a8053e4dfa0c3b1b91cc3607eb0209aa7fac)) +- replace useStyles ([045f426](https://github.com/Greenstand/treetracker-web-map-client/commit/045f4267c61fa7052d66f82e89bf4c4f355fadf5)) +- replace withStyles ([7a147f5](https://github.com/Greenstand/treetracker-web-map-client/commit/7a147f554e11f28a87cd37417e6ffcc9b0e7ea5a)) +- replaced mount with mountWithTheme ([32ad800](https://github.com/Greenstand/treetracker-web-map-client/commit/32ad800288ee54c50da134d40655163750ba9aff)) +- replaced next/Link with custom Link ([9785748](https://github.com/Greenstand/treetracker-web-map-client/commit/9785748f0a5647c3016b591e003b74ed1815f88e)) +- replaced scatter embed check fxs ([dd83b50](https://github.com/Greenstand/treetracker-web-map-client/commit/dd83b501937c2ac497fcc75d2c9d6bccdab02e4c)) +- replaced unrelevant keys in unit tests ([1b45b82](https://github.com/Greenstand/treetracker-web-map-client/commit/1b45b82cd75a4cef4a99b531646f12fc60813941)) +- resolve merge conflicts ([50c35c5](https://github.com/Greenstand/treetracker-web-map-client/commit/50c35c54dcd4341e187ece47eb14b396a86a55bd)) +- resolving conflict ([8dc98b2](https://github.com/Greenstand/treetracker-web-map-client/commit/8dc98b290cf70eb8a0630f1e45943e036de5dcfe)) +- return truncated token id from UUIDTag component ([85968b0](https://github.com/Greenstand/treetracker-web-map-client/commit/85968b0ef6c615a1600573708a6956b38a35c1fc)) +- revalidation return ([b2748b6](https://github.com/Greenstand/treetracker-web-map-client/commit/b2748b6b8afff89f8238815548eaf9d016f327e7)) +- revert changelog changes ([958a7eb](https://github.com/Greenstand/treetracker-web-map-client/commit/958a7eb40ca786e3f41599b05416c7fbef68cc8b)) +- revert flex changes ([3abc97d](https://github.com/Greenstand/treetracker-web-map-client/commit/3abc97d014ef1bf863bc3d0db46309d519300cbe)) +- revert prev commit ([3d26a90](https://github.com/Greenstand/treetracker-web-map-client/commit/3d26a90d22cad0202ffd9f214e7e4b1b2dfd840d)) +- root path not working on different envs ([b0dbc38](https://github.com/Greenstand/treetracker-web-map-client/commit/b0dbc381ff10450d156f5425e2bd8beb0421d8e1)) +- run useeffect on state change ([a89159c](https://github.com/Greenstand/treetracker-web-map-client/commit/a89159cca2764f9f1a818185ea640a882ef88b9c)) +- second scrollbar embed pages ([4c656ca](https://github.com/Greenstand/treetracker-web-map-client/commit/4c656ca06c78e8defdb7337d8903c1ba1e89e36d)) +- security audit ([06bbf97](https://github.com/Greenstand/treetracker-web-map-client/commit/06bbf97c7ac430226666bf24c3f41467f793f5a3)) +- security warnings ([f7ec996](https://github.com/Greenstand/treetracker-web-map-client/commit/f7ec996f4d1df2f98d54464c8f5878ee39a59527)) +- set 'mt' value to 0 and remove unused variables ([9d8d299](https://github.com/Greenstand/treetracker-web-map-client/commit/9d8d299f9e805b70c54722a701b9cbab5b6ae436)) +- setting for dev ([2f95158](https://github.com/Greenstand/treetracker-web-map-client/commit/2f951583180f5b2645f4fe9ac8b1b618a208dff4)) +- setting for dev ([e9d3893](https://github.com/Greenstand/treetracker-web-map-client/commit/e9d3893df3055f5f384b76dc0069f36418bf72e3)) +- setting for env of k8s ([b25568b](https://github.com/Greenstand/treetracker-web-map-client/commit/b25568b1f629def8491c568f59c6b62509d7a302)) +- share button styles and fix ([ae618c9](https://github.com/Greenstand/treetracker-web-map-client/commit/ae618c915b75de3bdac091b638a267e8648c011c)) +- **sharebutton:** added onClick to CustomShareIcon ([c2580e6](https://github.com/Greenstand/treetracker-web-map-client/commit/c2580e65b835d6e94c51af4c085f670d8da67209)) +- shortened gps location numbers ([de93099](https://github.com/Greenstand/treetracker-web-map-client/commit/de930997b9d3dfeb65276870833467dd10ccebee)) +- show date error on expand screen ([1515802](https://github.com/Greenstand/treetracker-web-map-client/commit/15158024cf1ce03208b656b23fa48b2ce5b265a9)) +- single tree with map data ([5efb886](https://github.com/Greenstand/treetracker-web-map-client/commit/5efb886c3937b947780ca63a61744764753e479c)) +- solve conflicts ([0e992f3](https://github.com/Greenstand/treetracker-web-map-client/commit/0e992f3feb92c78cf7c98a2fdf1d8b3bcfc2419d)) +- solving merge conflicts ([bee0265](https://github.com/Greenstand/treetracker-web-map-client/commit/bee0265d12a34f2970c76ab9d82c821a3f5a39d3)) +- some fine tuning and fix test cases ([e494c13](https://github.com/Greenstand/treetracker-web-map-client/commit/e494c13892240a01be0c27b0199b03fff5c83722)) +- some page layout ([3afaa7a](https://github.com/Greenstand/treetracker-web-map-client/commit/3afaa7ac8cdd41fcd13a46383cea324a4773d94b)) +- species component no key ([93c489c](https://github.com/Greenstand/treetracker-web-map-client/commit/93c489c69ef125c190ecf903ed1387bdb5b0465f)) +- species desc on wallet page ([f8b7c27](https://github.com/Greenstand/treetracker-web-map-client/commit/f8b7c2744fef271c13c7176b326dc1ad74b5126e)) +- svg graph fixed height ([e9d41f8](https://github.com/Greenstand/treetracker-web-map-client/commit/e9d41f87a4b3d03cd781b6c15f0187bf0bc34499)) +- svg improvements ([9145815](https://github.com/Greenstand/treetracker-web-map-client/commit/9145815ec2b24a092a8fc9a60a2f4ee03f30eb92)) +- swipeabledrawer ([369de38](https://github.com/Greenstand/treetracker-web-map-client/commit/369de3801793e181826fb56b0e4f59370e659b8d)) +- swtich to https to install core ([3163d07](https://github.com/Greenstand/treetracker-web-map-client/commit/3163d07b19c36feb1f506fb24261fa1d0ab05852)) +- tagchips color not compatible custom theme ([f23c2af](https://github.com/Greenstand/treetracker-web-map-client/commit/f23c2af1e8e25d873f8448ed71b12ffd175c8003)) +- talked about changes ([0b7454f](https://github.com/Greenstand/treetracker-web-map-client/commit/0b7454f4f8063b7f91c9670dabfb8daf8eee3bcb)) +- test ([c631bbb](https://github.com/Greenstand/treetracker-web-map-client/commit/c631bbb473d31ea5e065c919be9e4ed3803ac26d)) +- test ([adb9867](https://github.com/Greenstand/treetracker-web-map-client/commit/adb9867a5f4bce9b1e23917640062f043ad50675)) +- test ([eecb1d8](https://github.com/Greenstand/treetracker-web-map-client/commit/eecb1d84960c4f74f7705467a49eca94c470303b)) +- test failed because of filter default status changed ([8e09c82](https://github.com/Greenstand/treetracker-web-map-client/commit/8e09c82bf894a4aaebb7ebe597be6460209af719)) +- test not working with new copy button ([6887aa3](https://github.com/Greenstand/treetracker-web-map-client/commit/6887aa35dadad174a19e2fd80ff831986023065c)) +- text ([cc9500a](https://github.com/Greenstand/treetracker-web-map-client/commit/cc9500ab2f445986d62c5855888f9f5c0c569c16)) +- the zoom button disabled in some cases [#619](https://github.com/Greenstand/treetracker-web-map-client/issues/619) ([7cf746b](https://github.com/Greenstand/treetracker-web-map-client/commit/7cf746bc97337fcd6e138fbc05788833edc04691)) +- the zoom button disabled in some cases [#619](https://github.com/Greenstand/treetracker-web-map-client/issues/619) ([61acd63](https://github.com/Greenstand/treetracker-web-map-client/commit/61acd63abe5451ba6b8a8d430a60e355408468f3)) +- the zoom button disabled in some cases [#619](https://github.com/Greenstand/treetracker-web-map-client/issues/619) ([20b24a3](https://github.com/Greenstand/treetracker-web-map-client/commit/20b24a3c28b3b2d5d09afc6719a157fe0d322aeb)) +- the zoom button disabled in some cases [#619](https://github.com/Greenstand/treetracker-web-map-client/issues/619) ([2730465](https://github.com/Greenstand/treetracker-web-map-client/commit/2730465d028a1d8f11e704ac93d27f9a3fdf20df)) +- theme changes ([b307ef5](https://github.com/Greenstand/treetracker-web-map-client/commit/b307ef5f3eedc5682486bdde7cbed96fbaa84507)) +- theme mode toggle ([5239fa6](https://github.com/Greenstand/treetracker-web-map-client/commit/5239fa6e99f1c2ef0fcdc950408f2c51628c7dcf)) +- time override & add to top ([520f537](https://github.com/Greenstand/treetracker-web-map-client/commit/520f5374c46d552832dbc407674150f33f4c106e)) +- timeline appears on when expand button is clicked ([5781456](https://github.com/Greenstand/treetracker-web-map-client/commit/57814563a69802fd7481089023ede569918b25cd)) +- timeline dark theme color incorrect ([92549f9](https://github.com/Greenstand/treetracker-web-map-client/commit/92549f983eaa3d76e0241da2facf7e6bc98173a5)) +- timeline not correct position ([71903ac](https://github.com/Greenstand/treetracker-web-map-client/commit/71903ac1f994409df40427734606889a39b2a581)) +- timeline not visible on home page ([5691e2c](https://github.com/Greenstand/treetracker-web-map-client/commit/5691e2c83a02ae618b92d2f87049bc9844fb9211)) +- timeline router not working in test ([1f80dfc](https://github.com/Greenstand/treetracker-web-map-client/commit/1f80dfce252a2f743a147105325174603629a1c4)) +- timeline test ([c98686e](https://github.com/Greenstand/treetracker-web-map-client/commit/c98686e75a3e344c701fb2c5d1b0c4162a324fe2)) +- **timeline:** background color is not equal to navbar ([c4850d1](https://github.com/Greenstand/treetracker-web-map-client/commit/c4850d1f529fe8b82026c690ccfb116947ab64f2)) +- **timeline:** double box component ([7961fc5](https://github.com/Greenstand/treetracker-web-map-client/commit/7961fc544c76892a2bd199317feda266f17c4e9b)) +- tinkered style ([c7cf925](https://github.com/Greenstand/treetracker-web-map-client/commit/c7cf925da7718231e3356cdc5dd240727db61b55)) +- tiny css problem [#552](https://github.com/Greenstand/treetracker-web-map-client/issues/552) ([31f6329](https://github.com/Greenstand/treetracker-web-map-client/commit/31f6329565986e6485416305e6a8a82685c55145)) +- token id not working on drawer ui ([40eae89](https://github.com/Greenstand/treetracker-web-map-client/commit/40eae893f310e881d378f20a5a9329774a2fc87b)) +- **token:** test mock not providing planter id ([759f184](https://github.com/Greenstand/treetracker-web-map-client/commit/759f1844cfd26eca88e71a9347a24df028b535c2)) +- **token:** token id too long in breadcrumb ([cf150a4](https://github.com/Greenstand/treetracker-web-map-client/commit/cf150a4d9b7884593d64037d220c3b3f2099495f)) +- top cy ([2d4362c](https://github.com/Greenstand/treetracker-web-map-client/commit/2d4362cc2bbdeaba549191a1961a6b73420d4f50)) +- top page logic ([f0d64b9](https://github.com/Greenstand/treetracker-web-map-client/commit/f0d64b97e3bc854a71d90048ce234cc24a6782ed)) +- top.cy.js e2e test ([019d0e7](https://github.com/Greenstand/treetracker-web-map-client/commit/019d0e7878b958d792662a5c1131f109c5ce5be6)) +- treat useEmbed as function ([be83717](https://github.com/Greenstand/treetracker-web-map-client/commit/be83717c37574e9fa54195221e9e74d760b82f24)) +- tree badges are now dynamic ([ad06f73](https://github.com/Greenstand/treetracker-web-map-client/commit/ad06f737550e70d8a656be5d20b0d068c7a1ae9d)) +- tree icon can now highlight ([2f92ddd](https://github.com/Greenstand/treetracker-web-map-client/commit/2f92ddd3a2c34dc62ea0e1331d9bb0b4614c004b)) +- tree located in null ([5b31a18](https://github.com/Greenstand/treetracker-web-map-client/commit/5b31a18aa4e0919a8382e2daadf0012320df1ba1)) +- tree page can not click tree ([caa199a](https://github.com/Greenstand/treetracker-web-map-client/commit/caa199a3f14b39f6f515e2c2467eaf8b7419a3af)) +- **tree:** fixed a typo ([80c012d](https://github.com/Greenstand/treetracker-web-map-client/commit/80c012d46215951acd702d944877b6ea8e4039b9)) +- **tree:** fixed rotation problem ([36f22c6](https://github.com/Greenstand/treetracker-web-map-client/commit/36f22c6f0a362d94209d5d1d97feefdaa3e8443b)) +- treeid page test ([11db655](https://github.com/Greenstand/treetracker-web-map-client/commit/11db6555a0ef1e9fbe01d1a6df4886796a0aedee)) +- **tree:** make global icon consistent with others ([a97f93f](https://github.com/Greenstand/treetracker-web-map-client/commit/a97f93f4dd1e70a5e59858ec656e528caf7e9656)) +- treepage map can not load correctly ([2036baa](https://github.com/Greenstand/treetracker-web-map-client/commit/2036baac5c542ef04ba59ab5d46093a45255a66c)) +- trigger ([d57675f](https://github.com/Greenstand/treetracker-web-map-client/commit/d57675fe39182eb076bc70b9b9eda7e4628f455e)) +- trigger ([02e3f2d](https://github.com/Greenstand/treetracker-web-map-client/commit/02e3f2d64bd66e8588eae1f10c2eb62f99ee47a8)) +- typo ([3d3942e](https://github.com/Greenstand/treetracker-web-map-client/commit/3d3942ef4749e2e45cfe8a1cf70f9eced4f8af13)) +- typo in issue template ([4523465](https://github.com/Greenstand/treetracker-web-map-client/commit/452346516a0a6172e49acbc447d004c1464f6b99)) +- typo in README.md ([abfe36b](https://github.com/Greenstand/treetracker-web-map-client/commit/abfe36bbb5bd08070fc6c01f7ed09b29852b2663)) +- typo on link ([6f2ad92](https://github.com/Greenstand/treetracker-web-map-client/commit/6f2ad92b2d38e614accf01a4e7ceff6b668f7695)) +- typos ([96e64a3](https://github.com/Greenstand/treetracker-web-map-client/commit/96e64a3f25e437016cd9db857933804e53d444db)) +- udpate drawer titles ([d1f2786](https://github.com/Greenstand/treetracker-web-map-client/commit/d1f27869d7b7d12eb85cb0a2e144d480e1f8067c)) +- ui profile avatar ([348455a](https://github.com/Greenstand/treetracker-web-map-client/commit/348455a5d90f0c9d991729c3d7aa9243864eb614)) +- **ui:** make the tree info dialog full screen on mobile ([b377530](https://github.com/Greenstand/treetracker-web-map-client/commit/b3775308e5d7577bf4cd2b2cfc2cd47f5420afd3)) +- **ui:** theme dark background timeline button ([fe04e5c](https://github.com/Greenstand/treetracker-web-map-client/commit/fe04e5ccee3910fb0f1f766e514bbfa56112463a)) +- unclickable of custom card ([9d5cfab](https://github.com/Greenstand/treetracker-web-map-client/commit/9d5cfabb0d34fc4b80be1529f6cae69368764514)) +- undefined planter photo ([54efa53](https://github.com/Greenstand/treetracker-web-map-client/commit/54efa53d0256263138c342b869700bf900eecf54)) +- undefined self ([c64b463](https://github.com/Greenstand/treetracker-web-map-client/commit/c64b46392a4bb178754913244d316194dc524d41)) +- unit test broken ([f04459f](https://github.com/Greenstand/treetracker-web-map-client/commit/f04459fc12ee2044272145ba5d15a2df36a1e314)) +- unit test path resolver ([e5941c5](https://github.com/Greenstand/treetracker-web-map-client/commit/e5941c5cac1895411ac8cb63e92677ed656ed93e)) +- update dates picker ([bb836ef](https://github.com/Greenstand/treetracker-web-map-client/commit/bb836ef7d438c05eeacf421d09e9fdc56ed7b414)) +- update background color of profile avatar ([4a026d9](https://github.com/Greenstand/treetracker-web-map-client/commit/4a026d97b1305581a11b48b88870b4d5e454a6f6)) +- update component positioning ([43152b6](https://github.com/Greenstand/treetracker-web-map-client/commit/43152b69b16b0cf1a65f16f9ee1a2f0f8886c43c)) +- update css for planter quote to be responsive when embed ([a6ffb8a](https://github.com/Greenstand/treetracker-web-map-client/commit/a6ffb8ad493936afe2448816728213185a83ef7d)) +- update FeaturedTreesSlider component name ([0ba781f](https://github.com/Greenstand/treetracker-web-map-client/commit/0ba781fbc79c7e99c2a7820f6f9c55be54bdb244)) +- update filter component ([668823e](https://github.com/Greenstand/treetracker-web-map-client/commit/668823ecc819807924fc91591625afca91502929)) +- update icon color for better conntrast on dark mode ([2200355](https://github.com/Greenstand/treetracker-web-map-client/commit/22003553cc6fd81d6bbb8f8cf81f83138a1620b4)) +- update informationCard CSS to match figma ([2234034](https://github.com/Greenstand/treetracker-web-map-client/commit/22340344b0febac98b28463788ef5f95eac02050)) +- update jest tests ([e6fa736](https://github.com/Greenstand/treetracker-web-map-client/commit/e6fa736b1f1f05b8e1bd4cd1f445c0dcd8253d17)), closes [#273](https://github.com/Greenstand/treetracker-web-map-client/issues/273) +- update link color with theme mode ([4b03d99](https://github.com/Greenstand/treetracker-web-map-client/commit/4b03d999e9dba05499c1ea842a083b5312a72128)) +- update lint-staged package ([e0e6c3f](https://github.com/Greenstand/treetracker-web-map-client/commit/e0e6c3f31e3501ecd2e322e3ec58a1afdc037023)) +- update lock ([38d7a88](https://github.com/Greenstand/treetracker-web-map-client/commit/38d7a8859e358ad4acfb61aa1304bac8ef7bf63c)) +- update map core ([45dc06f](https://github.com/Greenstand/treetracker-web-map-client/commit/45dc06f03629b919bd5d6b6e30c336135b8380db)) +- update navbar tile and use value from array ([f5d19be](https://github.com/Greenstand/treetracker-web-map-client/commit/f5d19be90f65a5820464162ce6d0a737175dc43e)) +- update styles ([5fff591](https://github.com/Greenstand/treetracker-web-map-client/commit/5fff591acb2aa14d3d22e01f91a6270655b8d0cf)) +- update styles ([dc19a7b](https://github.com/Greenstand/treetracker-web-map-client/commit/dc19a7b6cbbc94530651b422654d018cfbf8a844)) +- update styles ([9b5caf8](https://github.com/Greenstand/treetracker-web-map-client/commit/9b5caf8e1087d78f9f020a772bb11a3e3e5c4ff5)) +- update styling as per Figma doc ([9b13779](https://github.com/Greenstand/treetracker-web-map-client/commit/9b13779f7bcd0e7fd684b474cfe9c34a1b9199e8)) +- update treeSpecies to prevent it from breaking on smaller screens ([e4324ca](https://github.com/Greenstand/treetracker-web-map-client/commit/e4324ca36f2bb89b35e97102e9f78f80b954a618)) +- update unit tests ([679b8ef](https://github.com/Greenstand/treetracker-web-map-client/commit/679b8ef41cab56763aeb1994207d3b2b425cfcd4)) +- update urls manually using embed ([b62a7cd](https://github.com/Greenstand/treetracker-web-map-client/commit/b62a7cde57fce1ff116bf906e2a69241f5064092)) +- updated axios for audit ([11ad013](https://github.com/Greenstand/treetracker-web-map-client/commit/11ad013a6436b59ea728143b897c7cedcaaf711f)) +- updated engines within package that json to support node versions >= 16 ([51b517c](https://github.com/Greenstand/treetracker-web-map-client/commit/51b517c353fc7fa8910f0d42b3dd4c900896362a)) +- updated husky and added lint-staged ([aa3006d](https://github.com/Greenstand/treetracker-web-map-client/commit/aa3006d3be4388a633aabb060d652a2a5c8245f5)) +- updated mobile view ([23184b5](https://github.com/Greenstand/treetracker-web-map-client/commit/23184b5506acf318821a6003087f8a04b8ae6227)) +- updated package.json ([91d10f1](https://github.com/Greenstand/treetracker-web-map-client/commit/91d10f157d0fcb9033aacf24d3d3a13182a79068)) +- updated source-map-explorer for audit ([4509b47](https://github.com/Greenstand/treetracker-web-map-client/commit/4509b470709f0160536fae6daeb8cbd4419c8ca6)) +- upgrade core to solve bug ([af4861e](https://github.com/Greenstand/treetracker-web-map-client/commit/af4861ecce800073648fce4774d3171b126e0b69)) +- upgrade node v14 to v18 ([271d5af](https://github.com/Greenstand/treetracker-web-map-client/commit/271d5afaa553806c15a55ce5862adba403a8e602)) +- use dev api ([480cde0](https://github.com/Greenstand/treetracker-web-map-client/commit/480cde025e413d193dd5b8e7c732d8a73f727122)) +- use Link rather than Button ([625f948](https://github.com/Greenstand/treetracker-web-map-client/commit/625f9482e4a795dee8a088644712da19cd356058)) +- use path resolver ([1242f11](https://github.com/Greenstand/treetracker-web-map-client/commit/1242f116a7db82c235feca064e5425e648c4d4dc)) +- useLocation hook to select correct theme ([c45b3cd](https://github.com/Greenstand/treetracker-web-map-client/commit/c45b3cd91953e950ddd7d04010443f54e1090777)) +- utils tests pass ([20288c0](https://github.com/Greenstand/treetracker-web-map-client/commit/20288c0b69f72cf579da9e9cca7d370d480bafff)) +- verified tree ([e68f580](https://github.com/Greenstand/treetracker-web-map-client/commit/e68f580acc91990f31d884df4621d67d864d5bef)) +- wallet cy ([3a58a51](https://github.com/Greenstand/treetracker-web-map-client/commit/3a58a51d7ec3f2240554066aec1bc18330248568)) +- window protect, image url fix ([b14f6b2](https://github.com/Greenstand/treetracker-web-map-client/commit/b14f6b23b9945c40e06c2928ed1fe7b1720eeced)) +- workflow cypress video path ([bda9c10](https://github.com/Greenstand/treetracker-web-map-client/commit/bda9c106aa3b71ac6807991d805c4247138dccdc)) +- wrong font size on top page ([9dab5e6](https://github.com/Greenstand/treetracker-web-map-client/commit/9dab5e694286211d60a81be7b601f991d6d8966b)) +- wrong setting for k8s ([821a0b0](https://github.com/Greenstand/treetracker-web-map-client/commit/821a0b0ed8d8a6adf89bd12b806dae200f8abfc9)) +- wrong width on the left part of the page. ([731a711](https://github.com/Greenstand/treetracker-web-map-client/commit/731a711231943141dce627a9b4442374faa29e87)) +- wrongly call pathResolver ([9c75f46](https://github.com/Greenstand/treetracker-web-map-client/commit/9c75f46c2157207edf5353c29a39bee646f26233)) +- yaml ([0575ecf](https://github.com/Greenstand/treetracker-web-map-client/commit/0575ecf59b0e8b809114a8740aaead8646138dec)) +- zoom buttons overlapping dialog ([1907df7](https://github.com/Greenstand/treetracker-web-map-client/commit/1907df740c7ea5aa20dba16779c9c1df99bfaaa2)) +- zoom on mobile issue ([5e120e1](https://github.com/Greenstand/treetracker-web-map-client/commit/5e120e156357c6e32a5c411ee03c29b1b130584b)) +- zoom on movile issue ([9bbb7f5](https://github.com/Greenstand/treetracker-web-map-client/commit/9bbb7f53086fd80f4249c169b8433b1fd6a56f32)) + +### Features + +- updated toolTip style acc to theme ([0ba074d](https://github.com/Greenstand/treetracker-web-map-client/commit/0ba074dcc2ae2cfa9dd60fb9bab58027f2eac334)) +- a redesign to component has been made ([583b005](https://github.com/Greenstand/treetracker-web-map-client/commit/583b005ec650687cd9db2f9b54367a380aa5ef87)) +- abbreviate tree count in CustomWorldMap component ([2c4f0e6](https://github.com/Greenstand/treetracker-web-map-client/commit/2c4f0e6ed5af1099175f594ff17cdd25ad51e448)) +- about support markdown ([c73518d](https://github.com/Greenstand/treetracker-web-map-client/commit/c73518da79f41c549781f7771cf13e2785619d59)) +- about, mession for org ([7720e9b](https://github.com/Greenstand/treetracker-web-map-client/commit/7720e9b41ad53409e5026c67f273debfe13d296f)) +- about, mession for planter, wallet ([cb71659](https://github.com/Greenstand/treetracker-web-map-client/commit/cb71659fde00249081d3dcdd864295325102205d)) +- action ([80a11ec](https://github.com/Greenstand/treetracker-web-map-client/commit/80a11ec4c340d3e0d6b43dfcf8fd537ea27cd1ed)) +- action for cwm ([975ea7a](https://github.com/Greenstand/treetracker-web-map-client/commit/975ea7a26231161d60c63e428f63a1d52a69a9c1)) +- adapt FeaturedTreesSlider to mobile device ([2c02266](https://github.com/Greenstand/treetracker-web-map-client/commit/2c022668419d4a5fd97eb94a109fcb66f791b0fe)) +- add 0 as valid input for letter spacing ([ff19f96](https://github.com/Greenstand/treetracker-web-map-client/commit/ff19f967813ec0956befb03db4aae5bc17693e90)) +- add alt attribute for image ([ae52938](https://github.com/Greenstand/treetracker-web-map-client/commit/ae52938aeac24e37b931cb6802334ecf63a98449)) +- add apipath, v2 to pathresolver, capturePage ([608a23a](https://github.com/Greenstand/treetracker-web-map-client/commit/608a23a1ea6798154e1f054f5c3dcf03ebabc605)) +- add back button on tree page ([dfa67f6](https://github.com/Greenstand/treetracker-web-map-client/commit/dfa67f642b42292aeaee7c4acd08852196be4c77)) +- add change theme button ([d3c6d04](https://github.com/Greenstand/treetracker-web-map-client/commit/d3c6d047b6123cd638ec70496085719ff558cd20)) +- add click to learn more ([66e34da](https://github.com/Greenstand/treetracker-web-map-client/commit/66e34da3081d944e60473c1119f7e5860ad9dc24)) +- add codemod script in lint staged ([e9f2ace](https://github.com/Greenstand/treetracker-web-map-client/commit/e9f2ace3a71701a9b1af9467ce5ee59f86709b0d)) +- add comment ([d3ff8a1](https://github.com/Greenstand/treetracker-web-map-client/commit/d3ff8a19fbf6788c0b1f4712fed31f5e050e02cc)) +- add component to modify navbar ([20afd60](https://github.com/Greenstand/treetracker-web-map-client/commit/20afd607b49ef88b0dc293091ab92156192e72db)) +- add copy function ([611bef5](https://github.com/Greenstand/treetracker-web-map-client/commit/611bef557469bffc437bb909f04ec49c0c2ccb90)) +- add correct impact icons ([7716c63](https://github.com/Greenstand/treetracker-web-map-client/commit/7716c632c2549e8c7fc54becfc04b4f414358703)) +- add crumbs to wallet token page ([1e0753c](https://github.com/Greenstand/treetracker-web-map-client/commit/1e0753c071e02f86a0bd3c247c3d240cae0008b4)) +- add custom icon component ([0953304](https://github.com/Greenstand/treetracker-web-map-client/commit/09533044db8d3993f76ad82e1d74fed4ea55c77e)) +- add custom logo selector ([bda430f](https://github.com/Greenstand/treetracker-web-map-client/commit/bda430f37fdd7efb6515d900e04aaedc7e41e967)) +- add drawertitle ([2f2ab7a](https://github.com/Greenstand/treetracker-web-map-client/commit/2f2ab7a3a83a9712ca8574aa21bc91d120e9f568)) +- add fallback value ([0822ca5](https://github.com/Greenstand/treetracker-web-map-client/commit/0822ca56773d98b11df6325a0e9c61d279854917)) +- add fallback value ([931a31c](https://github.com/Greenstand/treetracker-web-map-client/commit/931a31c48917ef9be71c5a2f2009118567ea758a)) +- add fallback value ([5eb6a2f](https://github.com/Greenstand/treetracker-web-map-client/commit/5eb6a2fcabc08621e64fe8d43eec991608c3813d)) +- add featured trees component ([c79a477](https://github.com/Greenstand/treetracker-web-map-client/commit/c79a47747d75abc8dff216c7e2c3247d8955a29b)) +- add featured trees component ([f0556a5](https://github.com/Greenstand/treetracker-web-map-client/commit/f0556a5b1f1befd44f0a84e87aff0115eaa6e5e0)) +- add featured trees component ([c0fd6b5](https://github.com/Greenstand/treetracker-web-map-client/commit/c0fd6b52e22705270184eebcae60dd197b9e47b8)) +- add featured trees component ([5152e30](https://github.com/Greenstand/treetracker-web-map-client/commit/5152e30b8bfb39503aa274cca05885eb16f6c185)) +- add filter to card ([be6ac62](https://github.com/Greenstand/treetracker-web-map-client/commit/be6ac62b658b636e7a4655988083756c8cbe0e4d)) +- add graph image ([45a9afb](https://github.com/Greenstand/treetracker-web-map-client/commit/45a9afb8fb373310dba9937ece40da39e4f5e4c9)) +- add greenstand logo png for light backgrounds ([0d51050](https://github.com/Greenstand/treetracker-web-map-client/commit/0d51050685f4ea0fe59548e34784a127f4e4f2ad)) +- add icon alongside custom font ([f69338f](https://github.com/Greenstand/treetracker-web-map-client/commit/f69338f86b02615463bf282946b77f2f12368dc9)) +- add image api setting ([0e76d16](https://github.com/Greenstand/treetracker-web-map-client/commit/0e76d1694b94f803d1a2f019d1de39655a6f4465)) +- add image api setting for deploy ([1685d2c](https://github.com/Greenstand/treetracker-web-map-client/commit/1685d2c9c1011b578d42cad15b8ac21733166e72)) +- add impact section ([92d73cc](https://github.com/Greenstand/treetracker-web-map-client/commit/92d73ccd88e68040398c1e992a2075864f734a71)) +- add impact section to pages ([174a333](https://github.com/Greenstand/treetracker-web-map-client/commit/174a33324d7621b00679f0503a0f6a101c21bf26)) +- add link for species ([13c7abd](https://github.com/Greenstand/treetracker-web-map-client/commit/13c7abddd33e52cc008948b926d0ef91874f7799)) +- add logic to the Back button [#33](https://github.com/Greenstand/treetracker-web-map-client/issues/33) ([b8528c5](https://github.com/Greenstand/treetracker-web-map-client/commit/b8528c5e1bb9c26fd748be417f59d1dcac0435f3)) +- add mock api cypress for one image tree ([e7a4f5e](https://github.com/Greenstand/treetracker-web-map-client/commit/e7a4f5eeec837355c21498085ef057a736437953)) +- add new zoom-in-out button on mobile ([c7fd143](https://github.com/Greenstand/treetracker-web-map-client/commit/c7fd143417ff81eb5aa0b3f0018236bd507714ed)) +- add next base handler ([b35ffa7](https://github.com/Greenstand/treetracker-web-map-client/commit/b35ffa7dbfec623f530e644ade70ee612871b496)) +- add page title to error pages ([ba7d901](https://github.com/Greenstand/treetracker-web-map-client/commit/ba7d901832b84f9549e4439931fc4bcc57f964f7)) +- add page title to global ([ff6b6ba](https://github.com/Greenstand/treetracker-web-map-client/commit/ff6b6ba467191be80a37c97abbec2486d12f85b3)) +- add planter link to tree page ([a915557](https://github.com/Greenstand/treetracker-web-map-client/commit/a915557453f3f211f881371bbc489bc81f5b8796)) +- add planter quote info ([f032471](https://github.com/Greenstand/treetracker-web-map-client/commit/f03247184be69f8187a58509da9f5dbed0e19436)) +- add prefix ([3adb5a3](https://github.com/Greenstand/treetracker-web-map-client/commit/3adb5a3351f8b2a1e591ca47db7e4788567ea43a)) +- add real location for org pages ([6f7019e](https://github.com/Greenstand/treetracker-web-map-client/commit/6f7019ecd1f526168375f5271e87d8b2c0387e37)) +- add real location for planter pages ([5da18d3](https://github.com/Greenstand/treetracker-web-map-client/commit/5da18d3349c695732ac533844221004afcc49f45)) +- add ref direct on drawer ([3bf3571](https://github.com/Greenstand/treetracker-web-map-client/commit/3bf3571909347132f7aa35fee4fecb2594b9d796)) +- add reusuable component image ([7249b65](https://github.com/Greenstand/treetracker-web-map-client/commit/7249b650d35f2032dc715b93b646653d4bb0263a)) +- add robot meta tag ([01ebb04](https://github.com/Greenstand/treetracker-web-map-client/commit/01ebb04b0033f2f5b282e2265971a9227d493226)) +- add routes ([02bfe5b](https://github.com/Greenstand/treetracker-web-map-client/commit/02bfe5b9b0886fd34c36541bb21e7c6545686526)) +- add SearchBoxMobile ([087de06](https://github.com/Greenstand/treetracker-web-map-client/commit/087de067ae5f77313b6752360894c555d84626d7)) +- add share button ([3e3eb48](https://github.com/Greenstand/treetracker-web-map-client/commit/3e3eb48ba9c06aed5c6e230a3e51952dbe3a4db7)) +- add share functionality to button ([e6c35cf](https://github.com/Greenstand/treetracker-web-map-client/commit/e6c35cf4b4d2f961685805f20ed2a69efed64f3d)) +- add slider on top page ([3bf1030](https://github.com/Greenstand/treetracker-web-map-client/commit/3bf1030dac4c8ce0e5137a2cd5cabd24f6cf3511)) +- add spacing for tree slider ([fc3d62a](https://github.com/Greenstand/treetracker-web-map-client/commit/fc3d62a593be2cef2336aa5fa7cad09e7c46afdb)) +- add species in slider ([09a4686](https://github.com/Greenstand/treetracker-web-map-client/commit/09a46865621affcf54963271b41554095a588839)) +- add support for Open Graph tags ([e14d9d6](https://github.com/Greenstand/treetracker-web-map-client/commit/e14d9d606cea7e1a7b044c10d1b2a3dfef6aca5c)) +- add support for twitter ([4c971b8](https://github.com/Greenstand/treetracker-web-map-client/commit/4c971b8eaf596425f46122d05f2145d4f2f276ae)) +- add tag chips component and cypress component test ([6bf3376](https://github.com/Greenstand/treetracker-web-map-client/commit/6bf33769c222ce6f3a7ba175f59763e74a10e00a)) +- add tests ([2051d4a](https://github.com/Greenstand/treetracker-web-map-client/commit/2051d4adcaaf7c0b392420b25db67dc684f48019)) +- add tests for search history ([2fed247](https://github.com/Greenstand/treetracker-web-map-client/commit/2fed247a13e7e7403a8162db73d17f33ac7f366e)) +- add tests to PR workflow ([138974b](https://github.com/Greenstand/treetracker-web-map-client/commit/138974b73e677e2d22a6250308c925398f8fce97)) +- add timeline desktop ([4895149](https://github.com/Greenstand/treetracker-web-map-client/commit/489514925a5c0da67c89618a0cf0fd77b1cbeed0)) +- add timeline filter functionality ([9000dce](https://github.com/Greenstand/treetracker-web-map-client/commit/9000dce6f44848e41176013bb763ed166e885bf5)) +- add timeline input validation ([1849e05](https://github.com/Greenstand/treetracker-web-map-client/commit/1849e055094f8f162e1aff252ed04234f65c0c65)) +- add timeline mobile ([36d199f](https://github.com/Greenstand/treetracker-web-map-client/commit/36d199f49e65affdc6f25dc6f3795f2fcc0457bb)) +- add title to pages ([9484781](https://github.com/Greenstand/treetracker-web-map-client/commit/948478191cfb4982288f28fc62956d2f235d9e12)) +- add tooltip for uuid ([c8aa468](https://github.com/Greenstand/treetracker-web-map-client/commit/c8aa46898f22621b5d45d41e0efff6fd44756801)) +- add tree image tests ([bc9635b](https://github.com/Greenstand/treetracker-web-map-client/commit/bc9635b07b2377134cb5c0118baff044ed1f3f26)) +- add tree info dialog ([a6cb044](https://github.com/Greenstand/treetracker-web-map-client/commit/a6cb0445f4f6cd5147214c200900a0e4351851c0)) +- add tree info dialog test ([ba4ddc9](https://github.com/Greenstand/treetracker-web-map-client/commit/ba4ddc9c6e65d5f7f061d855b53e94b41a276e15)) +- add uuid tag ([5fec6e7](https://github.com/Greenstand/treetracker-web-map-client/commit/5fec6e786e3ca6a5fe8fbaf04d5df0b48a92ecfe)) +- add version number ([0f9a154](https://github.com/Greenstand/treetracker-web-map-client/commit/0f9a154b243dc83658035cc5f9de58b920ad5e13)) +- add wallet api ([495b53d](https://github.com/Greenstand/treetracker-web-map-client/commit/495b53d5db94adc72544226eb245eee058e28258)) +- add wallet logo ([8070141](https://github.com/Greenstand/treetracker-web-map-client/commit/8070141dbcf0277766cc2964da8e757d7dc24c65)) +- add wrapper for server props ([3293e79](https://github.com/Greenstand/treetracker-web-map-client/commit/3293e79c39536e84651bd2e7053449c65b5eb562)) +- add wrapper on all pages ([0512c2c](https://github.com/Greenstand/treetracker-web-map-client/commit/0512c2cccbe5f0c65f5030df6288354ed437a843)) +- add zoomIn and zoomOut buttons and the logic for the Map component [#332](https://github.com/Greenstand/treetracker-web-map-client/issues/332) ([852e750](https://github.com/Greenstand/treetracker-web-map-client/commit/852e750c5fdbc3e35f73fcdcee173da6ea7ae992)) +- added a custom 404 page ([63cc9c8](https://github.com/Greenstand/treetracker-web-map-client/commit/63cc9c8320e029273a37b46b3abaafb97eab3600)) +- added ability to reset single colors ([b350cd1](https://github.com/Greenstand/treetracker-web-map-client/commit/b350cd17ff29c96fd1cc4f796dd5a4aef25eb303)) +- added another input element for weights ([8d0131c](https://github.com/Greenstand/treetracker-web-map-client/commit/8d0131c39b758cf8bb64428c970a9114167d3fa1)) +- added api call ([df1b738](https://github.com/Greenstand/treetracker-web-map-client/commit/df1b738a7c39e3523c298ff354d6c2aed31645a8)) +- added concurrently and dev:mock script ([c807fcf](https://github.com/Greenstand/treetracker-web-map-client/commit/c807fcf39d9447860e8bb6f968d3f09f63aaf5b2)) +- added country prop, fixed country locations ([b6e4069](https://github.com/Greenstand/treetracker-web-map-client/commit/b6e4069d69d219ef9b15ec95aa1f46bbefd1690d)) +- added facebook like button ([2571ba2](https://github.com/Greenstand/treetracker-web-map-client/commit/2571ba214cae5be0f903061b1a643ea9aee263cc)) +- added facebook like button ([faa548a](https://github.com/Greenstand/treetracker-web-map-client/commit/faa548adec0f4e20a7d848099cd27d3ae06312ef)) +- added featured trees for planter ([ba51645](https://github.com/Greenstand/treetracker-web-map-client/commit/ba51645886835bc09a18758085b225d575a6c637)) +- added featured wallet list ([2926cb5](https://github.com/Greenstand/treetracker-web-map-client/commit/2926cb5e52a73f29a5058fcc3c4306bb2772109d)) +- added filter component ([b4526fa](https://github.com/Greenstand/treetracker-web-map-client/commit/b4526fa1191b7fd1a5fa12f90a8be71a0f38af45)) +- added font weight validation ([852ce8b](https://github.com/Greenstand/treetracker-web-map-client/commit/852ce8b2b6ea980cc03e183873be3ce44cfe5efd)) +- added icons to mobile view ([3851e23](https://github.com/Greenstand/treetracker-web-map-client/commit/3851e23a03462b435dffaba34dbac519f616ea3e)) +- added link to navbar logo ([e98be5a](https://github.com/Greenstand/treetracker-web-map-client/commit/e98be5afabb5a5762b12e849e6fdc46e57ecacec)) +- added location component ([f4d8272](https://github.com/Greenstand/treetracker-web-map-client/commit/f4d8272031301575824798e7edd387a6d4f8daa7)) +- added more info to info panel ([32b205c](https://github.com/Greenstand/treetracker-web-map-client/commit/32b205c4224a77e42af674786e455fe270af8315)) +- added next js ([3c6c6d6](https://github.com/Greenstand/treetracker-web-map-client/commit/3c6c6d60117ca4ff760deca957f92375b8d065df)) +- added next router mocking for cypress ([80ca905](https://github.com/Greenstand/treetracker-web-map-client/commit/80ca905d8252318ca335934efff2a7c578bf676e)) +- added organizations from stakeholders ([709ba83](https://github.com/Greenstand/treetracker-web-map-client/commit/709ba83e32bba46ed2682838e47598c4ed4a1d4f)) +- added pin image from master ([508550f](https://github.com/Greenstand/treetracker-web-map-client/commit/508550f3918c677d49d72c45f31f3db2c1341d85)) +- added single input resets ([6ccc0e9](https://github.com/Greenstand/treetracker-web-map-client/commit/6ccc0e9111b6220920192b94491633adb90c540f)) +- added small map for wallet page ([c24ff67](https://github.com/Greenstand/treetracker-web-map-client/commit/c24ff674a199e355722e81193d5d32786c73bde8)) +- added tooltip to CustomCard ([52e4d9f](https://github.com/Greenstand/treetracker-web-map-client/commit/52e4d9f7c1417c8acee013f3e70749c03340d2fb)) +- added tooltip to display planters/orgs name ([967ea37](https://github.com/Greenstand/treetracker-web-map-client/commit/967ea37472845c254afaa7905d6f863beb644d6b)) +- added unit test ([c8b2a6f](https://github.com/Greenstand/treetracker-web-map-client/commit/c8b2a6ff7fcdb8d31299babf4fa4c17fd220a1f1)) +- added util methods for converting fontObjArr to normalized Google font Arr ([36c98d1](https://github.com/Greenstand/treetracker-web-map-client/commit/36c98d1395c48700462c32f77e7151d2c2d6bd9e)) +- adding 404 svg image ([dbe6473](https://github.com/Greenstand/treetracker-web-map-client/commit/dbe64733c200b647fea5a577627ff2a7db203110)) +- adjust theme to match new web map site design ([0f14286](https://github.com/Greenstand/treetracker-web-map-client/commit/0f142867950114e8884280d904b40315a6c030f8)) +- admin can now set initial map view ([97bf46b](https://github.com/Greenstand/treetracker-web-map-client/commit/97bf46bcf017f204a8f9caa635c0d555f2ccce2c)) +- api for wallet, token list, transaction list and so on ([ce276c7](https://github.com/Greenstand/treetracker-web-map-client/commit/ce276c701e87a114e696d638b0e289b927a6339e)) +- app can handle wallet+token page ([de73b70](https://github.com/Greenstand/treetracker-web-map-client/commit/de73b7059ce20a2400364eb2ae423a671a2ce512)) +- avoid drawer move when touch ([a13015a](https://github.com/Greenstand/treetracker-web-map-client/commit/a13015a9f3eff7b5cc47d0324ddd03efec31e914)) +- badge component [#154](https://github.com/Greenstand/treetracker-web-map-client/issues/154) ([5f6b5c8](https://github.com/Greenstand/treetracker-web-map-client/commit/5f6b5c86f24d63b2848a42b2ea231e372c05f83a)) +- basic auth integration ([4cb421b](https://github.com/Greenstand/treetracker-web-map-client/commit/4cb421b370408ad132b1bad938a442f066538a5f)) +- be able to edit theme ([510c944](https://github.com/Greenstand/treetracker-web-map-client/commit/510c944a458475a5a4f19d8d6ef148be69fe998a)) +- be able to render logo in embed ([6def0b6](https://github.com/Greenstand/treetracker-web-map-client/commit/6def0b6924f6521dd4075f908ede71335eb0670c)) +- be able to view theme ([1f19d40](https://github.com/Greenstand/treetracker-web-map-client/commit/1f19d400f033e16346cdd20133d51e3cf468ef67)) +- beta deployment channel ([087c774](https://github.com/Greenstand/treetracker-web-map-client/commit/087c7744e621afc07311aa08d99b795de0f859c2)) +- cache ([60eeaa4](https://github.com/Greenstand/treetracker-web-map-client/commit/60eeaa49f0fd5d09790e0f3aedbfc27408b8f3ec)) +- can change theme ([6627e67](https://github.com/Greenstand/treetracker-web-map-client/commit/6627e671a32eb6152a32f34473e4dc6daf613260)) +- can do on pages with new core version ([1ee05c5](https://github.com/Greenstand/treetracker-web-map-client/commit/1ee05c53530ecb9637bc786b6b8ae930b675149c)) +- can install core repo ([45fa613](https://github.com/Greenstand/treetracker-web-map-client/commit/45fa6132b7241e12bf19374c937d5a358c6faaa7)) +- can load theme when open page ([1062c3a](https://github.com/Greenstand/treetracker-web-map-client/commit/1062c3a332270a75508be9173b8a145b857e7c9d)) +- can mock api by prism ([b786b0e](https://github.com/Greenstand/treetracker-web-map-client/commit/b786b0eef7cdde11fc59ff204d8d8314afbad179)) +- can mock instantly ([1a5fbad](https://github.com/Greenstand/treetracker-web-map-client/commit/1a5fbad068711573a842fcc6d7ac0babc9a7e730)) +- can pagination tokens on wallet map ([c0f21f0](https://github.com/Greenstand/treetracker-web-map-client/commit/c0f21f07e7beb751946b19297e80a2ff3c5be0bd)) +- can render both side ([891023d](https://github.com/Greenstand/treetracker-web-map-client/commit/891023d96fa630db61c82d53c11d20a8b29f53a0)) +- can rewrite path ([7afd194](https://github.com/Greenstand/treetracker-web-map-client/commit/7afd1948ef1231a1e19f20a949deab76e5092e1c)) +- can save/load theme from db ([16c4582](https://github.com/Greenstand/treetracker-web-map-client/commit/16c458263401eef8070d3db935b4275653e87d2c)) +- can show org map ([8dde4d6](https://github.com/Greenstand/treetracker-web-map-client/commit/8dde4d6a12f33e7a78b08184898903eb88ae908a)) +- can zoom in to single tree view on the map ([943a0a2](https://github.com/Greenstand/treetracker-web-map-client/commit/943a0a21226efa1010757ac9bb50b703062f6384)) +- change default state for continentTags and make API calls upon tag selection ([157e55b](https://github.com/Greenstand/treetracker-web-map-client/commit/157e55b3d6798a09bec4d09bfbe75e90a91a16a7)) +- change domain ([95c19c3](https://github.com/Greenstand/treetracker-web-map-client/commit/95c19c33ff990eab72ecc6d5c0c20d205dfc60c3)) +- change padding ([3442e2c](https://github.com/Greenstand/treetracker-web-map-client/commit/3442e2cff1e9bc16d0ba0ea2c5c728a739aeac4a)) +- change padding ([da8f8b3](https://github.com/Greenstand/treetracker-web-map-client/commit/da8f8b3e8544c39a67ac64ff6f874eeb8cee90f6)) +- changed planter to grower, fixed date format ([8a85881](https://github.com/Greenstand/treetracker-web-map-client/commit/8a8588139205c7a09da3a01ff7658acfec81940f)) +- compare tree tag info ([8a59340](https://github.com/Greenstand/treetracker-web-map-client/commit/8a593403cf4a420f31cc01aed4ec91ddf8e15566)) +- component for search box ([1c45e1f](https://github.com/Greenstand/treetracker-web-map-client/commit/1c45e1f32a003cbf1fc4884f2b63523dc9b6fca2)) +- connect backend config ([2f9a2e6](https://github.com/Greenstand/treetracker-web-map-client/commit/2f9a2e641ec6d180fb5d85e21a1e4c0d089fc3e5)) +- contry leader; jump to country; ([52c02d9](https://github.com/Greenstand/treetracker-web-map-client/commit/52c02d9a6d2afc5d610a78765fa0472254f94cc7)) +- converted fontObj Arr to google font libs normalized arr ([1e8adb0](https://github.com/Greenstand/treetracker-web-map-client/commit/1e8adb0f9ff33ce9d3f51bfd9e7cb52f43322498)) +- core 2.6.0 ([c702680](https://github.com/Greenstand/treetracker-web-map-client/commit/c70268089f2a2bc06062165a024bb5cc1bf97fa5)) +- cover page for org ([283ab09](https://github.com/Greenstand/treetracker-web-map-client/commit/283ab093cb788b994a682d1be31df7726e7c2cf7)) +- cover page for wallet ([e630c1d](https://github.com/Greenstand/treetracker-web-map-client/commit/e630c1de12bcf5bd8e34d354f7d82a0f69af960d)) +- create github pull_request_template.md ([c2c6460](https://github.com/Greenstand/treetracker-web-map-client/commit/c2c6460e808dd9f939aaea2b6e68daa294166c06)) +- crumbs for pages ([f6b8e1e](https://github.com/Greenstand/treetracker-web-map-client/commit/f6b8e1e6f9f69319d46799de457c86c9ba25f8c1)) +- custom card in planter ([5729b7c](https://github.com/Greenstand/treetracker-web-map-client/commit/5729b7c42b307b26060238dcfcf9c2d05637d33e)) +- **custom-card:** add new icon component ([be6980c](https://github.com/Greenstand/treetracker-web-map-client/commit/be6980c58932e2e6dc9445833261e7179a64904f)) +- **cwm-editor:** add useCallback to reduce renders ([f04bed0](https://github.com/Greenstand/treetracker-web-map-client/commit/f04bed0aed1b0f929be4f2435aaa873d2e138da0)) +- **cwm:** add config context ([d151561](https://github.com/Greenstand/treetracker-web-map-client/commit/d1515616ab0110cacdad5b54c7ed05e0ca056fab)) +- **cwm:** add default config as initial context value ([5d85fa5](https://github.com/Greenstand/treetracker-web-map-client/commit/5d85fa5c810146e194c9aa65ea3a35333b8771ae)) +- cypress open without nock ([e16bd81](https://github.com/Greenstand/treetracker-web-map-client/commit/e16bd81751c4c0bd752eab497adc58fcb1c1cb5a)) +- **dashboard:** add basic setup ([6b6e64a](https://github.com/Greenstand/treetracker-web-map-client/commit/6b6e64a8b1ce12a33813bbc678f2adfdb5007aa4)) +- **dashboard:** add mock for logged in organization ([fe40667](https://github.com/Greenstand/treetracker-web-map-client/commit/fe40667d7adc5386d465e3beb39198003dcfe25b)) +- **dashboard:** add navbar tab ([68dbdec](https://github.com/Greenstand/treetracker-web-map-client/commit/68dbdec7d2b65dfff684414bc8d3b56b4a979649)) +- **dashboard:** can add new nav item ([59170d9](https://github.com/Greenstand/treetracker-web-map-client/commit/59170d94884f6926a2251563363ef21c7e21b7c5)) +- **dashboard:** can preview logo and change the url ([0003fa8](https://github.com/Greenstand/treetracker-web-map-client/commit/0003fa89595e413fcb929f310e93dfe1e6b5482d)) +- **dashboard:** can remove nav item ([4e461e3](https://github.com/Greenstand/treetracker-web-map-client/commit/4e461e33b621e9a9a67ef214595785612e0f52ab)) +- **dashboard:** can reorder nav items with drag drop ([565cea3](https://github.com/Greenstand/treetracker-web-map-client/commit/565cea367fb174c6dfae19ef0bc79f8d58f56164)) +- **dashboard:** change drag area to drag icon ([b2a9e9d](https://github.com/Greenstand/treetracker-web-map-client/commit/b2a9e9db39b4df3c795b1609f9be4b486363e0d2)) +- **dashboard:** change nav item delete button to icon ([f5cdfa8](https://github.com/Greenstand/treetracker-web-map-client/commit/f5cdfa8c509a970eaa857d3afd8e11367e020763)) +- **dashboard:** only show update button if nav item changed ([5b49111](https://github.com/Greenstand/treetracker-web-map-client/commit/5b491113b3745c71dd4fac679b648dd30fd30479)) +- **dashboard:** setup basic state ([8d51ee1](https://github.com/Greenstand/treetracker-web-map-client/commit/8d51ee10d566d934e13978a3a66d5f563f9915c3)) +- **dashboard:** update styling ([bd4db49](https://github.com/Greenstand/treetracker-web-map-client/commit/bd4db49987af7285ee9a6eef06167d326fb6aec3)) +- default bg image ([30690d8](https://github.com/Greenstand/treetracker-web-map-client/commit/30690d8584d7c3e02dec10fa63a55da5a7f8569b)) +- deploy test ([40a9a99](https://github.com/Greenstand/treetracker-web-map-client/commit/40a9a99eb79369bdb367c24857591621f825301f)) +- deploy test \n\n BREAKING CHANGE: it breaks something ([8c34ab0](https://github.com/Greenstand/treetracker-web-map-client/commit/8c34ab066417b145a2b70098cc61df277d0d7fb8)) +- developed SearchButton ([5fb0451](https://github.com/Greenstand/treetracker-web-map-client/commit/5fb04517de147a63df29338099c7f4122bb13523)) +- diabled slider buttons if user has reached extreme left or extreme right of the scroll area ([a3d7031](https://github.com/Greenstand/treetracker-web-map-client/commit/a3d703189f50d661094d65745fb9d91b4df2a9a0)) +- disable cache ([a49b3ce](https://github.com/Greenstand/treetracker-web-map-client/commit/a49b3ce0d8ff3900fcc15ede941e24c90a392131)) +- disable cards on impact section ([7f56ddd](https://github.com/Greenstand/treetracker-web-map-client/commit/7f56ddda5984246747a52f7eedddea9bba130339)) +- disable config api loading by default ([fd0f7dd](https://github.com/Greenstand/treetracker-web-map-client/commit/fd0f7dd6d479e9e72610cbb44586d479fc8e7fa5)) +- disable keycloak temp ([02ea67a](https://github.com/Greenstand/treetracker-web-map-client/commit/02ea67afe95c47ae1bd32e47509a9f72db2172c6)) +- disable pull to refresh ([321f5e3](https://github.com/Greenstand/treetracker-web-map-client/commit/321f5e3650ddf78417c48e481b1208357660c5d1)) +- display more tree tag ([6fac813](https://github.com/Greenstand/treetracker-web-map-client/commit/6fac81383986838c4732cecdb398022a6873c5a6)) +- drawer component ([8c6704f](https://github.com/Greenstand/treetracker-web-map-client/commit/8c6704f27ad8ab50ba6c98f4ddbd25893fbcb491)) +- embed ([47ff2d5](https://github.com/Greenstand/treetracker-web-map-client/commit/47ff2d5c0c629a2daf421bc661f531bbea5d4250)) +- embed map ([4cd7f5a](https://github.com/Greenstand/treetracker-web-map-client/commit/4cd7f5aa56c537ed04aff88be9420abf426227e0)) +- embed param override localStorage embed ([2d020a3](https://github.com/Greenstand/treetracker-web-map-client/commit/2d020a395d8c4ed032fb4540cc3669cbf94d2c9a)) +- error/warning component [#341](https://github.com/Greenstand/treetracker-web-map-client/issues/341) ([1057148](https://github.com/Greenstand/treetracker-web-map-client/commit/1057148b395ee322d5f6b2314aaa3961923d25bc)) +- error/warning component Grenstand[#341](https://github.com/Greenstand/treetracker-web-map-client/issues/341) ([ff7567b](https://github.com/Greenstand/treetracker-web-map-client/commit/ff7567bf702dde34ae99b9620177fea051a4bcf7)) +- featured wallet ([04e5fa8](https://github.com/Greenstand/treetracker-web-map-client/commit/04e5fa8e28d9e8fbeea2e96b9151db3c8b37a575)) +- filter/search pages ([1b7db44](https://github.com/Greenstand/treetracker-web-map-client/commit/1b7db44e3e038b94619bc71d91ab66c658299806)) +- final country board ([6eb4511](https://github.com/Greenstand/treetracker-web-map-client/commit/6eb45111583efd07bfe083d2fe749a2a811d3cdc)) +- finished the capture page for whats ready ([20a31a2](https://github.com/Greenstand/treetracker-web-map-client/commit/20a31a23c85e375a42c6ebc1115ed1c92d17aeab)) +- finished up adding tree slider ([e6fcf12](https://github.com/Greenstand/treetracker-web-map-client/commit/e6fcf12b7455a745f123a2ecfb4d10c05376e4f3)) +- first feature of other release \n\n BREAKING CHANGE: it breaks something ([f61fcc5](https://github.com/Greenstand/treetracker-web-map-client/commit/f61fcc5f01265b62ec130d5c56c3ca6637bdde87)) +- fixed the title area drawer mobile ([08a4f74](https://github.com/Greenstand/treetracker-web-map-client/commit/08a4f74d214122e2a9c9623811be3e18ad42ecf3)) +- flex wrap the token cards ([ce50954](https://github.com/Greenstand/treetracker-web-map-client/commit/ce50954bbf8534f94e41c645041cdb05fd066594)) +- focus the tree if needed ([6d891ff](https://github.com/Greenstand/treetracker-web-map-client/commit/6d891ffb241799f8c78abea147e794269ff32775)) +- formatDateString util function ([cb2786e](https://github.com/Greenstand/treetracker-web-map-client/commit/cb2786e71b10f5119dbb3f1e46e4125fe1698d01)) +- github pull request workflow ([97c1ddb](https://github.com/Greenstand/treetracker-web-map-client/commit/97c1ddb0c58c0813c29e24b0082be710b15d64b9)) +- give error feedback on incorrect date ([45507bb](https://github.com/Greenstand/treetracker-web-map-client/commit/45507bbdd3decf44ce1dd1600e3dce61f90cd8c7)) +- handle no data all pages ([c2bbf19](https://github.com/Greenstand/treetracker-web-map-client/commit/c2bbf19f54f267eaa08e539393d99d976fecf42c)) +- handle no data planter page ([cabbfdc](https://github.com/Greenstand/treetracker-web-map-client/commit/cabbfdc65c41fd17f43b47e7f97f9bf7f98dd55c)) +- hid scroll button(left,right) on mobile devices ([a9d580d](https://github.com/Greenstand/treetracker-web-map-client/commit/a9d580d8aabcee7e9cadd44820b90dda20fa115e)) +- i've worked on the review comments and added the test to mount the component ([ce149c3](https://github.com/Greenstand/treetracker-web-map-client/commit/ce149c3a62b331607e341a214a2806fd23591a81)) +- implement navbar config ([7511bbe](https://github.com/Greenstand/treetracker-web-map-client/commit/7511bbe6a0d54d21f4d9e56f9ea624f5d4eebfa1)) +- implement search history ([11a1a18](https://github.com/Greenstand/treetracker-web-map-client/commit/11a1a189f0bd23fb89921b4192c878e32b8a01f7)) +- implemented wallet page ([f3c9217](https://github.com/Greenstand/treetracker-web-map-client/commit/f3c9217a021b4ab22057a9434d97a05f6081a42a)) +- implemted token page ([664ef8b](https://github.com/Greenstand/treetracker-web-map-client/commit/664ef8ba59694175dea3ee18f2a4c67fdef60bbc)) +- increase expire time ([fd5305f](https://github.com/Greenstand/treetracker-web-map-client/commit/fd5305fa44b7b3ead07742366e8afc346bb690ba)) +- increase padding of card content ([40ad679](https://github.com/Greenstand/treetracker-web-map-client/commit/40ad67982f47f231c19108d3588abd8c6f2560d0)) +- **info:** center items vertically ([fddd0aa](https://github.com/Greenstand/treetracker-web-map-client/commit/fddd0aa039e8a8f54167890004e23a65e3b7f6e8)) +- initial deployment ([cfd7fe6](https://github.com/Greenstand/treetracker-web-map-client/commit/cfd7fe6e3bb4751bec398d37b63a22d191f2a125)) +- initial position ([4aa4994](https://github.com/Greenstand/treetracker-web-map-client/commit/4aa4994618bf408f3d5b57b43b38b58c075a505e)) +- installed jest ([e7d7280](https://github.com/Greenstand/treetracker-web-map-client/commit/e7d728032e43ce1977a24db9f728a4dd57e7ed15)) +- integrate google analytics ([fdea030](https://github.com/Greenstand/treetracker-web-map-client/commit/fdea0305938741767c6339ef2f8ad49b154db6cd)) +- isr - resolves: [#571](https://github.com/Greenstand/treetracker-web-map-client/issues/571) ([d1b5857](https://github.com/Greenstand/treetracker-web-map-client/commit/d1b58577eee1d073a1abaeedc46f667252a2e1fc)) +- isr for top ([cf2221c](https://github.com/Greenstand/treetracker-web-map-client/commit/cf2221c1c6964e350a28d9a4a166217231ea24bc)) +- issue [#298](https://github.com/Greenstand/treetracker-web-map-client/issues/298) flag icons ([4aa8920](https://github.com/Greenstand/treetracker-web-map-client/commit/4aa8920f8aed0cca94eb4139e7a838a7e1bb41e5)) +- issue [#304](https://github.com/Greenstand/treetracker-web-map-client/issues/304) add world map component ([1495bb5](https://github.com/Greenstand/treetracker-web-map-client/commit/1495bb50d65c37c4742efe13783c8db07bbabc59)) +- issue [#307](https://github.com/Greenstand/treetracker-web-map-client/issues/307) card component ([45a7898](https://github.com/Greenstand/treetracker-web-map-client/commit/45a7898e63b76eff63b0e652303b30a990d77f34)) +- issue [#309](https://github.com/Greenstand/treetracker-web-map-client/issues/309) tree species card component ([f0eb526](https://github.com/Greenstand/treetracker-web-map-client/commit/f0eb5260a63da1f52d0500efe345bf391577df61)) +- issue [#380](https://github.com/Greenstand/treetracker-web-map-client/issues/380) merge time and location component ([2dcdc44](https://github.com/Greenstand/treetracker-web-map-client/commit/2dcdc4444537323fd5b0b27b5ecd9e44f2096872)) +- issue [#475](https://github.com/Greenstand/treetracker-web-map-client/issues/475) add localstorage hook ([3b0a720](https://github.com/Greenstand/treetracker-web-map-client/commit/3b0a7206adef9033580d0b8df4f3b6fbdd40c7be)) +- issue [#503](https://github.com/Greenstand/treetracker-web-map-client/issues/503) update designsandbox ([fc77443](https://github.com/Greenstand/treetracker-web-map-client/commit/fc774431d32f716b316a2eccff8924eb7ce6657e)) +- jsconfig for absolute import paths ([b9baf45](https://github.com/Greenstand/treetracker-web-map-client/commit/b9baf459a7b1bc52b1cc576b368e988c3647f3fe)) +- k8s setting ([66cfdf1](https://github.com/Greenstand/treetracker-web-map-client/commit/66cfdf18de2bc82295fda38e7cd4e1f5b6df7f12)) +- layout for crumbs ([e314231](https://github.com/Greenstand/treetracker-web-map-client/commit/e314231ad0c90c05ca9afd9de9c3b672329b5ca0)) +- layout for home page is okay ([eb8ce3a](https://github.com/Greenstand/treetracker-web-map-client/commit/eb8ce3aaa677377443331d1624f10fec29e1b3b4)) +- layout for transactions ([2a776bd](https://github.com/Greenstand/treetracker-web-map-client/commit/2a776bd38902e8be2303d67b7b2b3e964c5d8669)) +- layout for wallet token on mobile ([e5d5c41](https://github.com/Greenstand/treetracker-web-map-client/commit/e5d5c41eb7dd45e6ef9a231caf04942d9ba3ee0e)) +- layout refine, fullscreen ([7425b28](https://github.com/Greenstand/treetracker-web-map-client/commit/7425b28281233d7b599955183b6d1b90d5617279)) +- layout wallet page ([4ff9981](https://github.com/Greenstand/treetracker-web-map-client/commit/4ff99813215cda4099d2749726c3251b4d83029a)) +- layout, details ([45ea0aa](https://github.com/Greenstand/treetracker-web-map-client/commit/45ea0aa1ab9c34efee5e1b18681f08dcb5a57c3f)) +- leader board integrated ([c1ef117](https://github.com/Greenstand/treetracker-web-map-client/commit/c1ef1171ff378d5f17009b6642aa7f8ffa5d8a2a)) +- leaderboard component draft ([cae5481](https://github.com/Greenstand/treetracker-web-map-client/commit/cae5481fed3edbd7586bbe731b23d8bcbaca8752)) +- link for planter's tree ([8ee7b70](https://github.com/Greenstand/treetracker-web-map-client/commit/8ee7b706250d90fbf0a434294c01fbeffd84bd65)) +- link kill height ([c4c97ca](https://github.com/Greenstand/treetracker-web-map-client/commit/c4c97cac4166b4d0372e02e88572ea25fac675ba)) +- load tree on wallet page ([9c01fbd](https://github.com/Greenstand/treetracker-web-map-client/commit/9c01fbd74d84735ba3be70af79731acd3be264c5)) +- loading page ([5b3c1d8](https://github.com/Greenstand/treetracker-web-map-client/commit/5b3c1d8332570fe4f9dd7451944d22b4fd66264b)) +- loading spinner ([461df6b](https://github.com/Greenstand/treetracker-web-map-client/commit/461df6b8da87b65eae2ac605dff3a08dd979e090)) +- localStorage for embed ([c7ef5f6](https://github.com/Greenstand/treetracker-web-map-client/commit/c7ef5f668d991e9f4064ecff88075dbe277a717e)) +- location for planter info ([3207a8e](https://github.com/Greenstand/treetracker-web-map-client/commit/3207a8eee37659d15ab9a9fbe0818b734e7f12de)) +- logo ([45a0341](https://github.com/Greenstand/treetracker-web-map-client/commit/45a03411c4f257de9f6e4fc10c81bc624ed6896b)) +- make toggletheme component sticky ([affe315](https://github.com/Greenstand/treetracker-web-map-client/commit/affe315faaa5d7a00c009565e90743745e722f21)) +- map be able to jump to planter view ([b25d944](https://github.com/Greenstand/treetracker-web-map-client/commit/b25d944210e4064e456a0c8845491efe5cf80b37)) +- map for token page ([660bd59](https://github.com/Greenstand/treetracker-web-map-client/commit/660bd59045e313ec66a7ef0cd63f9c7020f8f873)) +- merge beta ([0490870](https://github.com/Greenstand/treetracker-web-map-client/commit/04908708e5c6ba9c081afd915b51c2486efd8b67)) +- merge beta ([425baa6](https://github.com/Greenstand/treetracker-web-map-client/commit/425baa68b7e114790a9b15481ab9243ac2b52665)) +- merge beta ([564f582](https://github.com/Greenstand/treetracker-web-map-client/commit/564f582ef9e704735ecc28fd352a9ebb8907069d)) +- merge beta ([0acd2ac](https://github.com/Greenstand/treetracker-web-map-client/commit/0acd2ac872f9b6355aab439022f1f012b58bafc7)) +- merge beta ([a5856bc](https://github.com/Greenstand/treetracker-web-map-client/commit/a5856bc082477b86dde74ab654177c4cc1a0edfe)) +- merge beta ([1e794ba](https://github.com/Greenstand/treetracker-web-map-client/commit/1e794ba0fa09a54b60acd3ec39f13a231dfbbc79)) +- mobile drawer ([74239fb](https://github.com/Greenstand/treetracker-web-map-client/commit/74239fb93e026db606696e92d68b3f7bcb0c667b)) +- mobile drawer ([9d6da6c](https://github.com/Greenstand/treetracker-web-map-client/commit/9d6da6ca9a30b0fa70c987d145ef43986de22044)) +- mock api for planter/tree in wallet app ([57296c7](https://github.com/Greenstand/treetracker-web-map-client/commit/57296c73e3631f0987c3cbce4454b146bf94221a)) +- modified font List Comp to work with new type of form data ([975f533](https://github.com/Greenstand/treetracker-web-map-client/commit/975f5333e4939b4ffa1c9ca2e19bb242da96ebc0)) +- modify FeaturedTreesSlider to support display of small sized images ([0562048](https://github.com/Greenstand/treetracker-web-map-client/commit/056204870df687dfcd8367f9739c93ea074fac72)) +- mount tag chip component to the top page ([9a24cbe](https://github.com/Greenstand/treetracker-web-map-client/commit/9a24cbee9696b597362a9f55973799269b19c5c7)) +- mountWithTheme wrapper for cypress ([ef4a8d3](https://github.com/Greenstand/treetracker-web-map-client/commit/ef4a8d36b7f75b5c3dc87a90756c10697c4c41ba)) +- move codeshift to scripts folder ([a725f94](https://github.com/Greenstand/treetracker-web-map-client/commit/a725f942ce96b8cebadc1699de6ffec668fb5b79)) +- move hooks into indexed folder ([22c8c89](https://github.com/Greenstand/treetracker-web-map-client/commit/22c8c89c722b377138e71d2d47e2716a333cfa2e)) +- navbar component ([5dd63ce](https://github.com/Greenstand/treetracker-web-map-client/commit/5dd63ce99bc0a8191ac247839450cbad09fc995c)) +- new changes to the leaderboard component ([5067fe0](https://github.com/Greenstand/treetracker-web-map-client/commit/5067fe06cd59a61964c4e0bd0c53ff1f46c4bccc)) +- new core ([94685fd](https://github.com/Greenstand/treetracker-web-map-client/commit/94685fd31a568efd75adc04a2ad20ec9e2ad4c65)) +- new darwer for mobile ([baa3e84](https://github.com/Greenstand/treetracker-web-map-client/commit/baa3e84a8a3340085e173bd32db67f32be038da2)) +- new layout for the tags, org data loading ([40362c2](https://github.com/Greenstand/treetracker-web-map-client/commit/40362c2c9ae4afe2b2dcfa091212f1acb2bc4c1a)) +- next api mocking in cypress ([2dc35ff](https://github.com/Greenstand/treetracker-web-map-client/commit/2dc35ffb1d7841fa7ca4278c7672b4646649f86f)) +- next integrated into app ([bfe060d](https://github.com/Greenstand/treetracker-web-map-client/commit/bfe060d6a53fd2d272d830c247df92a81a69d730)) +- next/Link wrapper component ([478ffd0](https://github.com/Greenstand/treetracker-web-map-client/commit/478ffd0f84dd3a00633c7b67df0f39c93b736215)) +- org, wallet, tree, token by name ([2694c4d](https://github.com/Greenstand/treetracker-web-map-client/commit/2694c4d7d59911612e31421c9156ea00e624043e)) +- organization page with several lists ([3aec18b](https://github.com/Greenstand/treetracker-web-map-client/commit/3aec18bc43d10ea142254d230e23dca5b99575f5)) +- organizations/[id] page ([5b3371a](https://github.com/Greenstand/treetracker-web-map-client/commit/5b3371ad8ad0c8340dd4aea5e2c4ff4026270318)) +- path resolver ([bd7c0f8](https://github.com/Greenstand/treetracker-web-map-client/commit/bd7c0f8723e13e6a21ac515ca5f02d10481cb9c8)) +- planter name, mobile full screen ([b5a24db](https://github.com/Greenstand/treetracker-web-map-client/commit/b5a24db5a41458e7f226b89cc2b4acda354da84a)) +- planter page ([1294c43](https://github.com/Greenstand/treetracker-web-map-client/commit/1294c4371da835baca832f9aa7e213bc7c6002c6)) +- planter quote layout, species data ([3ad9527](https://github.com/Greenstand/treetracker-web-map-client/commit/3ad9527af9dd3c02eb205487fdde5926ecb17bca)) +- **playground:** add basic color components ([292b0ca](https://github.com/Greenstand/treetracker-web-map-client/commit/292b0caac1517c2752cd77d9c96b6c45176d03a2)) +- **playground:** add color picker ([1f49e44](https://github.com/Greenstand/treetracker-web-map-client/commit/1f49e44a33450bb306fb2c0f4e5887f92b31132a)) +- **playground:** add context provider ([8792d1e](https://github.com/Greenstand/treetracker-web-map-client/commit/8792d1e1c3f1ede7aba962bcf5381f3d8fe8b9d1)) +- **playground:** add gradient color picker ([47206d7](https://github.com/Greenstand/treetracker-web-map-client/commit/47206d7f473dcb574ef07145ce87db9c55eee158)) +- **playground:** add prop rules/validation ([e36388e](https://github.com/Greenstand/treetracker-web-map-client/commit/e36388ee6a92543492e846eea3947127cd0b6a06)) +- **playground:** add square icon button ([e848ce7](https://github.com/Greenstand/treetracker-web-map-client/commit/e848ce7fd8bf2ca6af3c4977307dd59de34b13b1)) +- **playground:** add switch prop component ([d2194bf](https://github.com/Greenstand/treetracker-web-map-client/commit/d2194bff4b122ced82805328ab02ae796d63ff75)) +- **playground:** add tests ([77f8378](https://github.com/Greenstand/treetracker-web-map-client/commit/77f8378b6e2a919cc964ac045ba24d6978a0fa30)) +- **playground:** basic font customization ([2b2dfb6](https://github.com/Greenstand/treetracker-web-map-client/commit/2b2dfb6ecc27d38f2ef66e041317ae15fc4b43ec)) +- **playground:** basic typography components ([54938b4](https://github.com/Greenstand/treetracker-web-map-client/commit/54938b4149325348335f8d6b742708ec7bf8b81d)) +- **playground:** can preview on mobile/desktop ([5e64a05](https://github.com/Greenstand/treetracker-web-map-client/commit/5e64a0506952d770b5f355601e5763f210fc3d51)) +- **playground:** load/store theme fonts from local storage ([2d237fe](https://github.com/Greenstand/treetracker-web-map-client/commit/2d237fe58ba94c84307843c64da50bb737e4b809)) +- **playground:** reduce font weights for loading ([735641b](https://github.com/Greenstand/treetracker-web-map-client/commit/735641b85613cf9d53f8db48e335a83d59004681)) +- **playground:** update indication custom font style ([1470c2c](https://github.com/Greenstand/treetracker-web-map-client/commit/1470c2c4feeb1de220df9ca03e78b575586c0253)) +- **playground:** update textarea styling ([143ee02](https://github.com/Greenstand/treetracker-web-map-client/commit/143ee02862b90b2a68e0065efc8cf5bdcdaaa117)) +- put real data ([06d2d25](https://github.com/Greenstand/treetracker-web-map-client/commit/06d2d255a64c3ad0518fb0b81e2e3e89c4a079e7)) +- readme about theme ([dc07e78](https://github.com/Greenstand/treetracker-web-map-client/commit/dc07e78e7ccf383dd5f89856ffe381d3bf8e530c)) +- redirect legacy queries ([538ea54](https://github.com/Greenstand/treetracker-web-map-client/commit/538ea544e25ed53cc0fa793a369377d2846b662f)) +- refactor pathResolver ([f266b1d](https://github.com/Greenstand/treetracker-web-map-client/commit/f266b1ddc481c8459e1556b277abfcd7c84e5131)) +- refine mobile home page ([ab18cb8](https://github.com/Greenstand/treetracker-web-map-client/commit/ab18cb8cc061c6f8070d4e47572a725d5206f9a2)) +- refine the home page desktop ([f1791a4](https://github.com/Greenstand/treetracker-web-map-client/commit/f1791a49776101b0ca54b1a88421e44a2fb89d92)) +- release enable web map iste ([f5cdbf9](https://github.com/Greenstand/treetracker-web-map-client/commit/f5cdbf9f26510f118e5d8c59b1e90438fc058cba)) +- remove dynamic navbar import ([a01005b](https://github.com/Greenstand/treetracker-web-map-client/commit/a01005b6e4796a6169b655cb64e18d8d53b3d870)) +- remove useless files ([5cb3704](https://github.com/Greenstand/treetracker-web-map-client/commit/5cb3704e14777a3e4b4f7e5d7ce2fc6d71b026e8)) +- removed fontWeight input from fonts section ([bd8a003](https://github.com/Greenstand/treetracker-web-map-client/commit/bd8a0037d3c64496699a4a0bc8675f2f5aa564ea)) +- removed validation from fontWeights for now ([62881a4](https://github.com/Greenstand/treetracker-web-map-client/commit/62881a4cea9282c686e69fcc2356d9fc576d265e)) +- render feature section only if data exists ([fc90ae0](https://github.com/Greenstand/treetracker-web-map-client/commit/fc90ae049fe29668f0da9719771aaf3e4b81ce01)) +- replace menu icon ([abb6805](https://github.com/Greenstand/treetracker-web-map-client/commit/abb6805b45d3b325e0278cc3848a17f51f996599)) +- resolve path with resolver ([7fe6099](https://github.com/Greenstand/treetracker-web-map-client/commit/7fe609955e16ae9eaf3521cbc235767e3ea84875)) +- revert changelog ([95c1adf](https://github.com/Greenstand/treetracker-web-map-client/commit/95c1adfb8252d686233bb47d5f2ef593d90743c6)) +- ribbons component added and theme spacing is being used ([ba6ec6d](https://github.com/Greenstand/treetracker-web-map-client/commit/ba6ec6dfe179ce39b802ce6ce1d1b4998001874e)) +- run code mode along with eslint to fix import alias issue ([cfd3998](https://github.com/Greenstand/treetracker-web-map-client/commit/cfd39982a9f2e67b0d3a0ef1c9809f07c0d4b589)) +- run prettier on commit ([5a43228](https://github.com/Greenstand/treetracker-web-map-client/commit/5a4322813a77d4ffb8aff78741ca1a1d69602c66)) +- send performance metrics to google analytics ([f5a2748](https://github.com/Greenstand/treetracker-web-map-client/commit/f5a2748ea8bb071733cb86b7f1030990319988b3)) +- set zoom control position ([934497d](https://github.com/Greenstand/treetracker-web-map-client/commit/934497d772fc7d78a89db2c027965c33bbde50ba)) +- settings for core ([cf9c372](https://github.com/Greenstand/treetracker-web-map-client/commit/cf9c372e1e820cfb76dde70bcda0808605b3fc42)) +- settings for leader board ([edbb054](https://github.com/Greenstand/treetracker-web-map-client/commit/edbb0547d7d3f3ed9742d682a93cb654510b080e)) +- settings for prod ([1c08c2e](https://github.com/Greenstand/treetracker-web-map-client/commit/1c08c2e67865326f1f6ffaeb59e84c5fda8abbb6)) +- share box ([25b158d](https://github.com/Greenstand/treetracker-web-map-client/commit/25b158d0f934c6a8fe7dd5537f444543a5b3a259)) +- share button ([d5ed442](https://github.com/Greenstand/treetracker-web-map-client/commit/d5ed442fe6c7dc8c8d8d8141deb0acadc364744f)) +- shift codemod before prettier ([53604ba](https://github.com/Greenstand/treetracker-web-map-client/commit/53604baf304e67e2d71148ddb97289a007b1a7f5)) +- shorten token id ([060474a](https://github.com/Greenstand/treetracker-web-map-client/commit/060474a581da1a81573e22fb8e0a7e1a370f4f89)) +- show maps current lat,lng, zoomLevel ([4b6cdda](https://github.com/Greenstand/treetracker-web-map-client/commit/4b6cdda2e6750f5227487970400f01a7d876535f)) +- show timeline only on global context ([b2f54ad](https://github.com/Greenstand/treetracker-web-map-client/commit/b2f54ad6c9b4fb1cc197141c4690a3aea760dfd6)) +- showed logo/avatar of the planter on tree page ([2d723b8](https://github.com/Greenstand/treetracker-web-map-client/commit/2d723b8fc3eb92b70610ff5beee4e67b30f6168a)) +- showed continent name from planter data in planter page ([b3146b3](https://github.com/Greenstand/treetracker-web-map-client/commit/b3146b3bd64c901d14b1fb76aa97251c9b00b5d6)) +- showed planter info on top of tree page ([4165068](https://github.com/Greenstand/treetracker-web-map-client/commit/41650686ee094f86f9bb7c81e18f938ce000ce88)) +- showed planter info only if user came from planter page ([1703d59](https://github.com/Greenstand/treetracker-web-map-client/commit/1703d59888b38e1aaa0e4694193f733a68e924d7)) +- single tree highlight ([10a8e86](https://github.com/Greenstand/treetracker-web-map-client/commit/10a8e86271b8144f66cf17817ac1f154255d311a)) +- single tree selector ([65d6b89](https://github.com/Greenstand/treetracker-web-map-client/commit/65d6b896f852f2d8c4cd413147082f5c5e4a2e2a)) +- style tree age component; resolves [#105](https://github.com/Greenstand/treetracker-web-map-client/issues/105) ([2e5712a](https://github.com/Greenstand/treetracker-web-map-client/commit/2e5712a7dca04da9d1a2d333ee9e4b3dbe588efc)) +- switch to new core, be able to update url ([15785c5](https://github.com/Greenstand/treetracker-web-map-client/commit/15785c5d6f2fa5615a28bb7363072a580498d578)) +- switch to new icons ([698e823](https://github.com/Greenstand/treetracker-web-map-client/commit/698e8236259fe82addad64903f288784d2afe3c1)) +- switch to real api, top/tree/planter page ([ad0ab90](https://github.com/Greenstand/treetracker-web-map-client/commit/ad0ab90b52c0f8cdd1cb1eeb39ca54102ef345f9)) +- switcher for leader board ([0ae02e8](https://github.com/Greenstand/treetracker-web-map-client/commit/0ae02e8ab8e9865bcec14f21b704d485e30cc8e6)) +- the planter page ([d1ba8fc](https://github.com/Greenstand/treetracker-web-map-client/commit/d1ba8fc5ca4ee7a3846cfccc08dda65fe69d22b6)) +- the tree, planter page(partial) ([8eb0bae](https://github.com/Greenstand/treetracker-web-map-client/commit/8eb0bae992834e6849643ef0f1239ba81630c1ea)) +- **theme:** add icon alonside custom font ([6a3aef5](https://github.com/Greenstand/treetracker-web-map-client/commit/6a3aef5187b92052e5b8b5d61d5eb6aa2bc2cc12)) +- timeline to fit new core ([e013aa9](https://github.com/Greenstand/treetracker-web-map-client/commit/e013aa9d73834820efc2b68bed819cd3bd376ddb)) +- token page support load by treeid ([c502dc5](https://github.com/Greenstand/treetracker-web-map-client/commit/c502dc5c3482aab8d5e501768c7f7d05c5a977ca)) +- token page, badget, wallet card, title ([6dbcdb4](https://github.com/Greenstand/treetracker-web-map-client/commit/6dbcdb43f944331b3d1dc2063b71f88f7cabddbd)) +- token tags ([ade062b](https://github.com/Greenstand/treetracker-web-map-client/commit/ade062b27ce8cb02e3aed227de6f1d07b17306dc)) +- **token:** add real planter data for transaction ([ef84131](https://github.com/Greenstand/treetracker-web-map-client/commit/ef84131a6363e0ca0df1910adda1b5f2b1dc892d)) +- top page use real featured org,planter ([c0b2fae](https://github.com/Greenstand/treetracker-web-map-client/commit/c0b2fae27867f2311aeac4df1f4854e8f8471627)) +- transaction history ([e596b03](https://github.com/Greenstand/treetracker-web-map-client/commit/e596b03a7ccd6447b398e5d492845014c5f19c13)) +- tree as wallet background ([9b5c3c9](https://github.com/Greenstand/treetracker-web-map-client/commit/9b5c3c9c019ba368b0b478e69cdc01e59e522f90)) +- tree captures collected ([20ac47e](https://github.com/Greenstand/treetracker-web-map-client/commit/20ac47e16ea70cae88d17bc706628e02a80a55d1)) +- tree mobile page ([9b4fc62](https://github.com/Greenstand/treetracker-web-map-client/commit/9b4fc622967f6d85f9bdc21608bdf23d8e780540)) +- tree page can handle org/planter ([38370fe](https://github.com/Greenstand/treetracker-web-map-client/commit/38370fee2f0ae4424a494805efe0908116bc5dc6)) +- tree page enter wallet ([ddc2fec](https://github.com/Greenstand/treetracker-web-map-client/commit/ddc2fec4bc57963e4cd02fefc76a07863998e69f)) +- tree species ([5625449](https://github.com/Greenstand/treetracker-web-map-client/commit/562544949352408c8a867057b17c51a0b2c43a13)) +- treeid page development ([a0e8565](https://github.com/Greenstand/treetracker-web-map-client/commit/a0e85659e120b6d998175bc748682097bc520d12)) +- **treeid:** added MUIv5 skeleton loader component for tree info panel ([6fd467a](https://github.com/Greenstand/treetracker-web-map-client/commit/6fd467a0dc5487ec27ec5d64e2bf407fc9180fc0)) +- trigger version ([8b8503e](https://github.com/Greenstand/treetracker-web-map-client/commit/8b8503e377b3c2d3363c79ba45d488f49e57d6e4)) +- try to ssr ([ceebc2c](https://github.com/Greenstand/treetracker-web-map-client/commit/ceebc2c06e86b7c864ed690222a1f302f8c0cdbb)) +- **ui-wip:** added PlantQuote card component ([6ba9624](https://github.com/Greenstand/treetracker-web-map-client/commit/6ba9624b803717083923672849ed88757f634c77)) +- **ui-wip:** added PlantQuote card component ([72c5e2f](https://github.com/Greenstand/treetracker-web-map-client/commit/72c5e2f59683aa9ed1a0fdb5604ba22f34bbdb45)) +- updaed folder structurre and serach icon color ([5ef89fa](https://github.com/Greenstand/treetracker-web-map-client/commit/5ef89fa525868d9317a0a2091da0b59cbe1f4c6e)) +- update codeshift file to handle all cases ([d6f80ea](https://github.com/Greenstand/treetracker-web-map-client/commit/d6f80eaa0bd481aa7b2509a05cacf7694fee0629)) +- update count element styling ([5d92dc9](https://github.com/Greenstand/treetracker-web-map-client/commit/5d92dc9bc4683f5dcff7c52783ab43083a332256)) +- update drawer title ([33a9ec2](https://github.com/Greenstand/treetracker-web-map-client/commit/33a9ec2bbcd0eb5ed84b87fbaa5ba0c770de9401)) +- update home button to be dynamic for custom theme ([3b66e27](https://github.com/Greenstand/treetracker-web-map-client/commit/3b66e2727e6270df8817c9b9e2981278fbd5a4a8)) +- update import for mapContext ([05b11bb](https://github.com/Greenstand/treetracker-web-map-client/commit/05b11bb4f8e2f52c4d32dd65ff12c495c62ed42c)) +- update key name ([6703f1e](https://github.com/Greenstand/treetracker-web-map-client/commit/6703f1eaf5d0e44549d8fa0719edda9e7ce4b423)) +- update text on country leader board ([35ddead](https://github.com/Greenstand/treetracker-web-map-client/commit/35ddead52ef6933db0a3b3ebd62b2ff296788507)) +- update to the component design ([cab6747](https://github.com/Greenstand/treetracker-web-map-client/commit/cab6747af552a7a58293b14736ce67e55161af44)) +- updated font selector component acc to new strurcture of font and weights ([ea5ae9b](https://github.com/Greenstand/treetracker-web-map-client/commit/ea5ae9bad1ed9e8719c5679d52f7f8c3424211d5)) +- updated font structure acc -> {'name': weight[]} ([9bc94f1](https://github.com/Greenstand/treetracker-web-map-client/commit/9bc94f1bd6a8fc86a8dc0785f2c0344fc75eb2c4)) +- updated fontWeight validation and fontWeight now loads whenever user types validated fontWeght ([9dd2d3c](https://github.com/Greenstand/treetracker-web-map-client/commit/9dd2d3ca91260d9e5434eee3ceb305192131f09f)) +- updated test ([bce2df4](https://github.com/Greenstand/treetracker-web-map-client/commit/bce2df449fea152f074e76cf20c0458f65fc61ec)) +- updated test acc to new font weight structure ([4825f19](https://github.com/Greenstand/treetracker-web-map-client/commit/4825f196a51431c2251422f89e82df0a1b3d4a40)) +- updated unit tests according to new structure of font and weights ([a872e7b](https://github.com/Greenstand/treetracker-web-map-client/commit/a872e7b4b02503de034adc07c3720c46ebd30f06)) +- updated url when user moves map ([90a1ac8](https://github.com/Greenstand/treetracker-web-map-client/commit/90a1ac8f65112b20b24c75640abe3614f22a3068)) +- upgrade core ([4ecad65](https://github.com/Greenstand/treetracker-web-map-client/commit/4ecad6573b0772403e3df7ca9e760b7be36bcdca)) +- upgrade core ([bc78691](https://github.com/Greenstand/treetracker-web-map-client/commit/bc78691ac44b74c5f807c00b9854525bb364f28e)) +- upgrade core ([55194a9](https://github.com/Greenstand/treetracker-web-map-client/commit/55194a93a592dfdda0b9eea0fcfb6c7ddf9ce54f)) +- upgrade core ([6fe722c](https://github.com/Greenstand/treetracker-web-map-client/commit/6fe722ccab87328d4f0616ae3320c40594a7ec4f)) +- upgrade core ([ad0155d](https://github.com/Greenstand/treetracker-web-map-client/commit/ad0155d3594a49ef634654c6ecc4247c5cc72f09)) +- upgrade core ([29e2509](https://github.com/Greenstand/treetracker-web-map-client/commit/29e25091d9d34e6d7af447e19a4d7da1bb4dfeeb)) +- upgrade core ([88a78fb](https://github.com/Greenstand/treetracker-web-map-client/commit/88a78fb6ac587e89a3ad3f72a3af5d201b748e39)) +- upgrade core ([f76ac18](https://github.com/Greenstand/treetracker-web-map-client/commit/f76ac185cc4f45ece9b9ee55caee3651e50250fd)) +- upgrade core, select tree on planter+tree page ([2b170bb](https://github.com/Greenstand/treetracker-web-map-client/commit/2b170bb8417659369447c8eea73a2fb897fdfdfa)) +- upgrade to 2.1.0, now every page are resonsible for render map ([b4b3d85](https://github.com/Greenstand/treetracker-web-map-client/commit/b4b3d852d0b8f2d0d68d19c37d5a52066f8698fb)) +- upgrade to 2.2.0 core ([6b1e9a1](https://github.com/Greenstand/treetracker-web-map-client/commit/6b1e9a1755f21b67e2aeb75a0793491d0f533ec9)) +- upgrade web map core ([57b2cd3](https://github.com/Greenstand/treetracker-web-map-client/commit/57b2cd326d10146394dd43a4129c6adb8b84414a)) +- use axios mock ([035c8aa](https://github.com/Greenstand/treetracker-web-map-client/commit/035c8aa264dddc260c2885731fce72ba96d136ef)) +- use base root ([ede7036](https://github.com/Greenstand/treetracker-web-map-client/commit/ede70366fad1ecfbaf2bfc50266db8af81650e68)) +- use base root ([34171ae](https://github.com/Greenstand/treetracker-web-map-client/commit/34171ae3b9a8b61c307fbe9dcc2eec45af882c38)) +- use default rerelease branches ([ebc19b0](https://github.com/Greenstand/treetracker-web-map-client/commit/ebc19b02f7d3714cdc0b0d2f5765b5472156c0c3)) +- use getLocationString ([800a828](https://github.com/Greenstand/treetracker-web-map-client/commit/800a82878395c208c4795e544262554a3446ddf3)) +- use getLocationString ([8536e7b](https://github.com/Greenstand/treetracker-web-map-client/commit/8536e7b04a988a0d93fc320afbb887f346b547ea)) +- use getLocationString ([e3b5565](https://github.com/Greenstand/treetracker-web-map-client/commit/e3b5565d4a739cec61afedd59b2355563cc84df8)) +- use real org to poplulate the planter page ([d969b45](https://github.com/Greenstand/treetracker-web-map-client/commit/d969b457879fa6ce62cc0d253e52a2bffd9ac8d8)) +- used image api for tree thumbnail images ([83c300c](https://github.com/Greenstand/treetracker-web-map-client/commit/83c300c20c4af50d09fbe34730aac303725eceda)) +- user can now load font weights from typography component ([bbe98a5](https://github.com/Greenstand/treetracker-web-map-client/commit/bbe98a5eafb3dba043a2c260bb284051f821ed91)) +- **utils:** add location string formatter ([657d907](https://github.com/Greenstand/treetracker-web-map-client/commit/657d907e9d8e02a9779e039884c8fe1fb4b9f256)) +- wallet by name ([dab5ce9](https://github.com/Greenstand/treetracker-web-map-client/commit/dab5ce9546523510d3c1cf422396ad6ca00cdb2e)) +- zoom controls ([f4b6d13](https://github.com/Greenstand/treetracker-web-map-client/commit/f4b6d136bb4e67c2893efab68a66c190c0b84723)) ### Performance Improvements -* add height to tree image ([72580ab](https://github.com/dadiorchen/treetracker-web-map-client/commit/72580abecd7cf942907d8eb2078a0875e03cbd39)) -* remove unnecessary javascript from planter quote ([9c2fff0](https://github.com/dadiorchen/treetracker-web-map-client/commit/9c2fff02b99a914c98c8f4e59229a18a2115b1da)) - +- add height to tree image ([72580ab](https://github.com/Greenstand/treetracker-web-map-client/commit/72580abecd7cf942907d8eb2078a0875e03cbd39)) +- remove unnecessary javascript from planter quote ([9c2fff0](https://github.com/Greenstand/treetracker-web-map-client/commit/9c2fff02b99a914c98c8f4e59229a18a2115b1da)) ### Reverts -* Revert "fix(drawer): not able to scroll to bottom content" ([31934fb](https://github.com/dadiorchen/treetracker-web-map-client/commit/31934fb6081316124013ef12939578cf64c54730)) -* Revert "Reverting to display more tree tag due to unnecessary component" ([868891c](https://github.com/dadiorchen/treetracker-web-map-client/commit/868891c8f98a16e80353e77bd3c53aa8b585f3d7)) -* c45b3cd91953e950ddd7d04010443f54e1090777 ([ee629a4](https://github.com/dadiorchen/treetracker-web-map-client/commit/ee629a4b743d8c38c53c5bfe54173cfdb12cccaf)) -* remove abbreviate number from wallet page ([93b4b9a](https://github.com/dadiorchen/treetracker-web-map-client/commit/93b4b9ac627a9b2b53130c897f336c2329872d40)) - +- Revert "fix(drawer): not able to scroll to bottom content" ([31934fb](https://github.com/Greenstand/treetracker-web-map-client/commit/31934fb6081316124013ef12939578cf64c54730)) +- Revert "Reverting to display more tree tag due to unnecessary component" ([868891c](https://github.com/Greenstand/treetracker-web-map-client/commit/868891c8f98a16e80353e77bd3c53aa8b585f3d7)) +- c45b3cd91953e950ddd7d04010443f54e1090777 ([ee629a4](https://github.com/Greenstand/treetracker-web-map-client/commit/ee629a4b743d8c38c53c5bfe54173cfdb12cccaf)) +- remove abbreviate number from wallet page ([93b4b9a](https://github.com/Greenstand/treetracker-web-map-client/commit/93b4b9ac627a9b2b53130c897f336c2329872d40)) ### BREAKING CHANGES -* beta - -# [2.0.0-beta.231](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.0.0-beta.230...v2.0.0-beta.231) (2023-03-08) - - -### Bug Fixes - -* remove impact section ([2346e71](https://github.com/Greenstand/treetracker-web-map-client/commit/2346e715687b9ff881ce0f91ba8869f638b6484f)) +- beta # [2.0.0-beta.230](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.0.0-beta.229...v2.0.0-beta.230) (2023-03-01) - ### Bug Fixes -* env var not a valid boolean ([11b1426](https://github.com/Greenstand/treetracker-web-map-client/commit/11b142697bf3c414b7be422733165c53d6a09a10)) - +- env var not a valid boolean ([11b1426](https://github.com/Greenstand/treetracker-web-map-client/commit/11b142697bf3c414b7be422733165c53d6a09a10)) ### Features -* connect backend config ([2f9a2e6](https://github.com/Greenstand/treetracker-web-map-client/commit/2f9a2e641ec6d180fb5d85e21a1e4c0d089fc3e5)) -* **cwm:** add config context ([d151561](https://github.com/Greenstand/treetracker-web-map-client/commit/d1515616ab0110cacdad5b54c7ed05e0ca056fab)) -* **cwm:** add default config as initial context value ([5d85fa5](https://github.com/Greenstand/treetracker-web-map-client/commit/5d85fa5c810146e194c9aa65ea3a35333b8771ae)) +- connect backend config ([2f9a2e6](https://github.com/Greenstand/treetracker-web-map-client/commit/2f9a2e641ec6d180fb5d85e21a1e4c0d089fc3e5)) +- **cwm:** add config context ([d151561](https://github.com/Greenstand/treetracker-web-map-client/commit/d1515616ab0110cacdad5b54c7ed05e0ca056fab)) +- **cwm:** add default config as initial context value ([5d85fa5](https://github.com/Greenstand/treetracker-web-map-client/commit/5d85fa5c810146e194c9aa65ea3a35333b8771ae)) # [2.0.0-beta.229](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.0.0-beta.228...v2.0.0-beta.229) (2023-02-07) - ### Bug Fixes -* initial view wrong [#1332](https://github.com/Greenstand/treetracker-web-map-client/issues/1332) ([baa8749](https://github.com/Greenstand/treetracker-web-map-client/commit/baa87491ec8adcafd8c79db45cfeef7b3a3d80b7)) +- initial view wrong [#1332](https://github.com/Greenstand/treetracker-web-map-client/issues/1332) ([baa8749](https://github.com/Greenstand/treetracker-web-map-client/commit/baa87491ec8adcafd8c79db45cfeef7b3a3d80b7)) # [2.0.0-beta.228](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.0.0-beta.227...v2.0.0-beta.228) (2023-02-07) - ### Bug Fixes -* replace the fallbacks image in the information card with a logo [#1331](https://github.com/Greenstand/treetracker-web-map-client/issues/1331) ([3713a80](https://github.com/Greenstand/treetracker-web-map-client/commit/3713a8053e4dfa0c3b1b91cc3607eb0209aa7fac)) +- replace the fallbacks image in the information card with a logo [#1331](https://github.com/Greenstand/treetracker-web-map-client/issues/1331) ([3713a80](https://github.com/Greenstand/treetracker-web-map-client/commit/3713a8053e4dfa0c3b1b91cc3607eb0209aa7fac)) # [2.0.0-beta.227](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.0.0-beta.226...v2.0.0-beta.227) (2023-02-05) - ### Bug Fixes -* align icon and text ([cb43af4](https://github.com/Greenstand/treetracker-web-map-client/commit/cb43af4443f40155db228bd1b706c6eb524dd4b8)) -* move message location ([32f9ce3](https://github.com/Greenstand/treetracker-web-map-client/commit/32f9ce3f5591f5906f42b9dbea5217709202be01)) -* show date error on expand screen ([1515802](https://github.com/Greenstand/treetracker-web-map-client/commit/15158024cf1ce03208b656b23fa48b2ce5b265a9)) +- align icon and text ([cb43af4](https://github.com/Greenstand/treetracker-web-map-client/commit/cb43af4443f40155db228bd1b706c6eb524dd4b8)) +- move message location ([32f9ce3](https://github.com/Greenstand/treetracker-web-map-client/commit/32f9ce3f5591f5906f42b9dbea5217709202be01)) +- show date error on expand screen ([1515802](https://github.com/Greenstand/treetracker-web-map-client/commit/15158024cf1ce03208b656b23fa48b2ce5b265a9)) # [2.0.0-beta.226](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.0.0-beta.225...v2.0.0-beta.226) (2023-02-04) - ### Features -* **treeid:** added MUIv5 skeleton loader component for tree info panel ([6fd467a](https://github.com/Greenstand/treetracker-web-map-client/commit/6fd467a0dc5487ec27ec5d64e2bf407fc9180fc0)) +- **treeid:** added MUIv5 skeleton loader component for tree info panel ([6fd467a](https://github.com/Greenstand/treetracker-web-map-client/commit/6fd467a0dc5487ec27ec5d64e2bf407fc9180fc0)) # [2.0.0-beta.225](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.0.0-beta.224...v2.0.0-beta.225) (2023-02-03) - ### Bug Fixes -* import useTheme from material ([dd03e46](https://github.com/Greenstand/treetracker-web-map-client/commit/dd03e468ddfd28bfa20280b7e88e8c07564bfda5)) -* replace a tag with Link component ([c94af26](https://github.com/Greenstand/treetracker-web-map-client/commit/c94af2642410c1a67dfd9ae402f64f2842902f04)) -* update link color with theme mode ([4b03d99](https://github.com/Greenstand/treetracker-web-map-client/commit/4b03d999e9dba05499c1ea842a083b5312a72128)) +- import useTheme from material ([dd03e46](https://github.com/Greenstand/treetracker-web-map-client/commit/dd03e468ddfd28bfa20280b7e88e8c07564bfda5)) +- replace a tag with Link component ([c94af26](https://github.com/Greenstand/treetracker-web-map-client/commit/c94af2642410c1a67dfd9ae402f64f2842902f04)) +- update link color with theme mode ([4b03d99](https://github.com/Greenstand/treetracker-web-map-client/commit/4b03d999e9dba05499c1ea842a083b5312a72128)) # [2.0.0-beta.224](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.0.0-beta.223...v2.0.0-beta.224) (2023-02-01) - ### Bug Fixes -* text ([cc9500a](https://github.com/Greenstand/treetracker-web-map-client/commit/cc9500ab2f445986d62c5855888f9f5c0c569c16)) -* verified tree ([e68f580](https://github.com/Greenstand/treetracker-web-map-client/commit/e68f580acc91990f31d884df4621d67d864d5bef)) +- text ([cc9500a](https://github.com/Greenstand/treetracker-web-map-client/commit/cc9500ab2f445986d62c5855888f9f5c0c569c16)) +- verified tree ([e68f580](https://github.com/Greenstand/treetracker-web-map-client/commit/e68f580acc91990f31d884df4621d67d864d5bef)) # [2.0.0-beta.223](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.0.0-beta.222...v2.0.0-beta.223) (2023-01-31) - ### Features -* update codeshift file to handle all cases ([d6f80ea](https://github.com/Greenstand/treetracker-web-map-client/commit/d6f80eaa0bd481aa7b2509a05cacf7694fee0629)) +- update codeshift file to handle all cases ([d6f80ea](https://github.com/Greenstand/treetracker-web-map-client/commit/d6f80eaa0bd481aa7b2509a05cacf7694fee0629)) # [2.0.0-beta.222](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.0.0-beta.221...v2.0.0-beta.222) (2023-01-30) - ### Bug Fixes -* **admin/theme:** added theme dependency to useEffect ([801098f](https://github.com/Greenstand/treetracker-web-map-client/commit/801098f2a5af14637cca8b263d0b288aaf7573a9)) -* **admin/theme:** reset typography vals correctly ([c5b5364](https://github.com/Greenstand/treetracker-web-map-client/commit/c5b5364f81e224d9a8497c76033ab30eaafffc68)) -* **cwm-editor:** double nested if statement ([fc6f00a](https://github.com/Greenstand/treetracker-web-map-client/commit/fc6f00a40346b7bb218d2a0bf3a26d0ecf4ebd5a)) -* **cwm-editor:** input value not updating after initial value ([b1bd7f6](https://github.com/Greenstand/treetracker-web-map-client/commit/b1bd7f6f7cc8a89f0c1d121e6250790ab5e2b920)) -* revert changelog changes ([958a7eb](https://github.com/Greenstand/treetracker-web-map-client/commit/958a7eb40ca786e3f41599b05416c7fbef68cc8b)) -* updated engines within package that json to support node versions >= 16 ([51b517c](https://github.com/Greenstand/treetracker-web-map-client/commit/51b517c353fc7fa8910f0d42b3dd4c900896362a)) -* upgrade node v14 to v18 ([271d5af](https://github.com/Greenstand/treetracker-web-map-client/commit/271d5afaa553806c15a55ce5862adba403a8e602)) - +- **admin/theme:** added theme dependency to useEffect ([801098f](https://github.com/Greenstand/treetracker-web-map-client/commit/801098f2a5af14637cca8b263d0b288aaf7573a9)) +- **admin/theme:** reset typography vals correctly ([c5b5364](https://github.com/Greenstand/treetracker-web-map-client/commit/c5b5364f81e224d9a8497c76033ab30eaafffc68)) +- **cwm-editor:** double nested if statement ([fc6f00a](https://github.com/Greenstand/treetracker-web-map-client/commit/fc6f00a40346b7bb218d2a0bf3a26d0ecf4ebd5a)) +- **cwm-editor:** input value not updating after initial value ([b1bd7f6](https://github.com/Greenstand/treetracker-web-map-client/commit/b1bd7f6f7cc8a89f0c1d121e6250790ab5e2b920)) +- revert changelog changes ([958a7eb](https://github.com/Greenstand/treetracker-web-map-client/commit/958a7eb40ca786e3f41599b05416c7fbef68cc8b)) +- updated engines within package that json to support node versions >= 16 ([51b517c](https://github.com/Greenstand/treetracker-web-map-client/commit/51b517c353fc7fa8910f0d42b3dd4c900896362a)) +- upgrade node v14 to v18 ([271d5af](https://github.com/Greenstand/treetracker-web-map-client/commit/271d5afaa553806c15a55ce5862adba403a8e602)) ### Features -* add apipath, v2 to pathresolver, capturePage ([608a23a](https://github.com/Greenstand/treetracker-web-map-client/commit/608a23a1ea6798154e1f054f5c3dcf03ebabc605)) -* add codemod script in lint staged ([e9f2ace](https://github.com/Greenstand/treetracker-web-map-client/commit/e9f2ace3a71701a9b1af9467ce5ee59f86709b0d)) -* added country prop, fixed country locations ([b6e4069](https://github.com/Greenstand/treetracker-web-map-client/commit/b6e4069d69d219ef9b15ec95aa1f46bbefd1690d)) -* added organizations from stakeholders ([709ba83](https://github.com/Greenstand/treetracker-web-map-client/commit/709ba83e32bba46ed2682838e47598c4ed4a1d4f)) -* changed planter to grower, fixed date format ([8a85881](https://github.com/Greenstand/treetracker-web-map-client/commit/8a8588139205c7a09da3a01ff7658acfec81940f)) -* **cwm-editor:** add useCallback to reduce renders ([f04bed0](https://github.com/Greenstand/treetracker-web-map-client/commit/f04bed0aed1b0f929be4f2435aaa873d2e138da0)) -* finished the capture page for whats ready ([20a31a2](https://github.com/Greenstand/treetracker-web-map-client/commit/20a31a23c85e375a42c6ebc1115ed1c92d17aeab)) -* merge beta ([0490870](https://github.com/Greenstand/treetracker-web-map-client/commit/04908708e5c6ba9c081afd915b51c2486efd8b67)) -* merge beta ([425baa6](https://github.com/Greenstand/treetracker-web-map-client/commit/425baa68b7e114790a9b15481ab9243ac2b52665)) -* merge beta ([564f582](https://github.com/Greenstand/treetracker-web-map-client/commit/564f582ef9e704735ecc28fd352a9ebb8907069d)) -* move codeshift to scripts folder ([a725f94](https://github.com/Greenstand/treetracker-web-map-client/commit/a725f942ce96b8cebadc1699de6ffec668fb5b79)) -* run code mode along with eslint to fix import alias issue ([cfd3998](https://github.com/Greenstand/treetracker-web-map-client/commit/cfd39982a9f2e67b0d3a0ef1c9809f07c0d4b589)) -* shift codemod before prettier ([53604ba](https://github.com/Greenstand/treetracker-web-map-client/commit/53604baf304e67e2d71148ddb97289a007b1a7f5)) -* update import for mapContext ([05b11bb](https://github.com/Greenstand/treetracker-web-map-client/commit/05b11bb4f8e2f52c4d32dd65ff12c495c62ed42c)) +- add apipath, v2 to pathresolver, capturePage ([608a23a](https://github.com/Greenstand/treetracker-web-map-client/commit/608a23a1ea6798154e1f054f5c3dcf03ebabc605)) +- add codemod script in lint staged ([e9f2ace](https://github.com/Greenstand/treetracker-web-map-client/commit/e9f2ace3a71701a9b1af9467ce5ee59f86709b0d)) +- added country prop, fixed country locations ([b6e4069](https://github.com/Greenstand/treetracker-web-map-client/commit/b6e4069d69d219ef9b15ec95aa1f46bbefd1690d)) +- added organizations from stakeholders ([709ba83](https://github.com/Greenstand/treetracker-web-map-client/commit/709ba83e32bba46ed2682838e47598c4ed4a1d4f)) +- changed planter to grower, fixed date format ([8a85881](https://github.com/Greenstand/treetracker-web-map-client/commit/8a8588139205c7a09da3a01ff7658acfec81940f)) +- **cwm-editor:** add useCallback to reduce renders ([f04bed0](https://github.com/Greenstand/treetracker-web-map-client/commit/f04bed0aed1b0f929be4f2435aaa873d2e138da0)) +- finished the capture page for whats ready ([20a31a2](https://github.com/Greenstand/treetracker-web-map-client/commit/20a31a23c85e375a42c6ebc1115ed1c92d17aeab)) +- merge beta ([0490870](https://github.com/Greenstand/treetracker-web-map-client/commit/04908708e5c6ba9c081afd915b51c2486efd8b67)) +- merge beta ([425baa6](https://github.com/Greenstand/treetracker-web-map-client/commit/425baa68b7e114790a9b15481ab9243ac2b52665)) +- merge beta ([564f582](https://github.com/Greenstand/treetracker-web-map-client/commit/564f582ef9e704735ecc28fd352a9ebb8907069d)) +- move codeshift to scripts folder ([a725f94](https://github.com/Greenstand/treetracker-web-map-client/commit/a725f942ce96b8cebadc1699de6ffec668fb5b79)) +- run code mode along with eslint to fix import alias issue ([cfd3998](https://github.com/Greenstand/treetracker-web-map-client/commit/cfd39982a9f2e67b0d3a0ef1c9809f07c0d4b589)) +- shift codemod before prettier ([53604ba](https://github.com/Greenstand/treetracker-web-map-client/commit/53604baf304e67e2d71148ddb97289a007b1a7f5)) +- update import for mapContext ([05b11bb](https://github.com/Greenstand/treetracker-web-map-client/commit/05b11bb4f8e2f52c4d32dd65ff12c495c62ed42c)) # [2.0.0-beta.221](https://github.com/Greenstand/treetracker-web-map-client/compare/v2.0.0-beta.220...v2.0.0-beta.221) (2022-12-30) From 8941e917bee3e02e202ca06a4897008e8ba03a5f Mon Sep 17 00:00:00 2001 From: deanchen Date: Sat, 1 Jul 2023 16:36:30 +0800 Subject: [PATCH 36/37] chore: use version of cwm --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b4b154e68..22e64b386 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "client", - "version": "2.5.3", + "version": "2.3.2-cwm.1", "private": true, "scripts": { "build": "next build", From ff7366db7b31b180177d464a0dd52262d7967d04 Mon Sep 17 00:00:00 2001 From: deanchen Date: Sat, 1 Jul 2023 16:40:14 +0800 Subject: [PATCH 37/37] chore: use env from cwm --- .env.development | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.development b/.env.development index 39847fed8..37f674155 100644 --- a/.env.development +++ b/.env.development @@ -7,4 +7,4 @@ NEXT_PUBLIC_API_NEW=http://127.0.0.1:4010/mock NEXT_PUBLIC_BASE= NEXT_PUBLIC_CONFIG_API= NEXT_PUBLIC_COUNTRY_LEADER_BOARD_DISABLED=false -NEXT_PUBLIC_SERVER_CONFIG_DISABLED=true +NEXT_PUBLIC_SERVER_CONFIG_DISABLED=