Skip to content

Commit

Permalink
fix width overflow for federation list
Browse files Browse the repository at this point in the history
  • Loading branch information
futurepaul authored and TonyGiorgio committed Apr 13, 2024
1 parent 437adf7 commit 1592661
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/routes/settings/ManageFederations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export function AddFederationForm(props: {
};

return (
<>
<div class="flex w-full flex-col gap-4">
<Show when={!props.setup && !props.browseOnly}>
<MediumHeader>
{i18n.t("settings.manage_federations.manual")}
Expand Down Expand Up @@ -340,7 +340,7 @@ export function AddFederationForm(props: {
</Match>
</Switch>
</Suspense>
</>
</div>
);
}

Expand Down
8 changes: 3 additions & 5 deletions src/routes/setup/AddFederation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,9 @@ export function AddFederation() {
>
{i18n.t("setup.federation.skip_confirm")}
</ConfirmDialog>
<VStack>
<Suspense>
<AddFederationForm setup />
</Suspense>
</VStack>
<Suspense>
<AddFederationForm setup />
</Suspense>
<p class="text-pretty text-center text-xl font-light text-neutral-200">
<ExternalLink href="https://fedimint.org/docs/intro">
{i18n.t("settings.manage_federations.learn_more")}
Expand Down

0 comments on commit 1592661

Please sign in to comment.