Skip to content

Commit

Permalink
Merge branch 'main' into PPF-55/remove-blocked-email
Browse files Browse the repository at this point in the history
  • Loading branch information
grubolsch authored Sep 19, 2024
2 parents c074e96 + efc573c commit d337228
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions resources/ts/Pages/Integrations/Index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,15 @@ const Index = ({ integrations, paginationInfo, credentials }: Props) => {
{t("integrations.add")}
</ButtonLink>
</div>

{integrations.length === 0 && <WelcomeSection />}
{integrations.length === 0 && (
<div>
{searchFromUrl ? (
t("integrations.results_found_zero")
) : (
<WelcomeSection />
)}
</div>
)}
{integrations.length > 0 && (
<>
<div className="inline-flex self-start">
Expand Down

0 comments on commit d337228

Please sign in to comment.