Skip to content

Commit

Permalink
fix: spacing between buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
AmanAgarwal041 committed Dec 24, 2024
1 parent 5304b60 commit 5c4b2a9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Button, Flex, ModalHeader, Text, toast } from "@appsmith/ads";
import { Button, ModalFooter, ModalHeader, Text, toast } from "@appsmith/ads";
import { createMessage, PREMIUM_DATASOURCES } from "ee/constants/messages";
import type { AppState } from "ee/reducers";
import React, { useCallback } from "react";
Expand Down Expand Up @@ -97,7 +97,7 @@ const PremiumDatasourceContactForm = (
size="md"
type="email"
/>
<Flex gap="spaces-3" justifyContent="flex-end" marginTop="spaces-3">
<ModalFooter>
{shouldLearnMoreButtonBeVisible(!isFreePlanInstance) && (
<Button
aria-label="Learn more"
Expand All @@ -114,7 +114,7 @@ const PremiumDatasourceContactForm = (
!isFreePlanInstance,
)}
</Button>
</Flex>
</ModalFooter>
</FormWrapper>
</>
);
Expand Down

0 comments on commit 5c4b2a9

Please sign in to comment.