Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug: show selected currency on currency chooser #876

Merged
merged 1 commit into from
Feb 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions src/components/ChooseCurrency.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const COMBINED_OPTIONS: Currency[] = [USD_OPTION, BTC_OPTION, ...FIAT_OPTIONS];
export function ChooseCurrency() {
const i18n = useI18n();
const [error, setError] = createSignal<Error>();
const [_state, actions] = useMegaStore();
const [state, actions] = useMegaStore();
const [loading, setLoading] = createSignal(false);
const navigate = useNavigate();

Expand All @@ -37,7 +37,7 @@ export function ChooseCurrency() {
const [_chooseCurrencyForm, { Form, Field }] =
createForm<ChooseCurrencyForm>({
initialValues: {
fiatCurrency: ""
fiatCurrency: state.fiat.value
},
validate: (values) => {
const errors: Record<string, string> = {};
Expand Down Expand Up @@ -82,7 +82,12 @@ export function ChooseCurrency() {
>
<For each={COMBINED_OPTIONS}>
{({ value, label }) => (
<option value={value}>{label}</option>
<option
selected={field.value === value}
value={value}
>
{label}
</option>
)}
</For>
</select>
Expand Down
Loading