diff --git a/.env.example b/.env.example index fec9abfa..fb329150 100644 --- a/.env.example +++ b/.env.example @@ -21,8 +21,6 @@ NX_FINICITY_PARTNER_SECRET= NX_TELLER_SIGNING_SECRET= NX_TELLER_APP_ID= -NEXT_PUBLIC_ZAPIER_FEEDBACK_HOOK_URL= - # Email credentials NX_POSTMARK_FROM_ADDRESS=account@example.com NX_POSTMARK_REPLY_TO_ADDRESS=support@example.com diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..67e8d549 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,40 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: bug +assignees: '' +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: + +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Desktop (please complete the following information):** + +- OS: [e.g. iOS] +- Browser [e.g. chrome, safari] +- Version [e.g. 22] + +**Smartphone (please complete the following information):** + +- Device: [e.g. iPhone6] +- OS: [e.g. iOS8.1] +- Browser [e.g. stock browser, safari] +- Version [e.g. 22] + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..2f28cead --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,19 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: '' +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/libs/client/features/src/account/AccountsSidebar.tsx b/libs/client/features/src/account/AccountsSidebar.tsx index da001352..43d350cb 100644 --- a/libs/client/features/src/account/AccountsSidebar.tsx +++ b/libs/client/features/src/account/AccountsSidebar.tsx @@ -187,7 +187,9 @@ export default function AccountsSidebar() { label={title} balances={balances.data} inverted={classification === 'liability'} - onToggle={(isExpanded) => updateToggleState(title, isExpanded)} + onToggle={(isExpanded) => + updateToggleState(`${title}-${classification}`, isExpanded) + } expanded={toggleState[title] !== false} level={1} syncing={items.some((a) => a.syncing)} diff --git a/libs/client/features/src/onboarding/steps/CountryWaitlist.tsx b/libs/client/features/src/onboarding/steps/CountryWaitlist.tsx deleted file mode 100644 index ebbca2fe..00000000 --- a/libs/client/features/src/onboarding/steps/CountryWaitlist.tsx +++ /dev/null @@ -1,62 +0,0 @@ -import Link from 'next/link' -import { useUserApi } from '@maybe-finance/client/shared' -import { Button } from '@maybe-finance/design-system' -import toast from 'react-hot-toast' -import { signOut } from 'next-auth/react' - -export function CountryWaitlist({ country }: { country?: string }) { - const { useDelete } = useUserApi() - - const deleteUser = useDelete({ - onSuccess() { - toast.success(`Account deleted`) - setTimeout(() => signOut(), 500) - }, - onError() { - toast.error(`Error deleting account`) - }, - }) - - return ( -
We hate doing this, but for now we’re only accepting users from the US. Why?
-- Well besides not being able to automatically connect to your institution, our - financial advisors wouldn’t be able to give you relevant localized advice and - would likely breach some regulations. -
-- That being said, we do plan on expanding Maybe to other countries soon. So we’ll - let you know via email once we launch Maybe in {country || 'your country'}. -
-
@@ -211,18 +207,12 @@ function ProfileForm({ title, onSubmit, defaultValues }: ProfileViewProps) {