diff --git a/packages/builder/src/components/backend/DatasourceNavigator/TableIntegrationMenu/PlusConfigForm.svelte b/packages/builder/src/components/backend/DatasourceNavigator/TableIntegrationMenu/PlusConfigForm.svelte
index 8805505c8d..45bc5ff330 100644
--- a/packages/builder/src/components/backend/DatasourceNavigator/TableIntegrationMenu/PlusConfigForm.svelte
+++ b/packages/builder/src/components/backend/DatasourceNavigator/TableIntegrationMenu/PlusConfigForm.svelte
@@ -188,29 +188,27 @@
{:else}
No tables found.
{/if}
-{#if plusTables?.length !== 0 && integration.relationships}
-
-
-
- Tell budibase how your tables are related to get even more smart features.
-
- {#if relationshipInfo && relationshipInfo.length > 0}
- openRelationshipModal(detail.from, detail.to)}
- schema={relationshipSchema}
- data={relationshipInfo}
- allowEditColumns={false}
- allowEditRows={false}
- allowSelectRows={false}
- />
- {:else}
- No relationships configured.
- {/if}
+
+
+
+ Tell budibase how your tables are related to get even more smart features.
+
+{#if relationshipInfo && relationshipInfo.length > 0}
+ openRelationshipModal(detail.from, detail.to)}
+ schema={relationshipSchema}
+ data={relationshipInfo}
+ allowEditColumns={false}
+ allowEditRows={false}
+ allowSelectRows={false}
+ />
+{:else}
+ No relationships configured.
{/if}