1
0
Fork 0
mirror of synced 2024-09-03 19:21:11 +12:00

Fix flash

This commit is contained in:
Adria Navarro 2023-06-09 12:00:16 +01:00
parent 0bd35be861
commit 86fa262649

View file

@ -29,6 +29,8 @@
let datasource = cloneDeep(integration) let datasource = cloneDeep(integration)
datasource.config.continueSetupId = continueSetupId datasource.config.continueSetupId = continueSetupId
let { schema } = datasource
$: isGoogleConfigured = !!$organisation.googleDatasourceConfigured $: isGoogleConfigured = !!$organisation.googleDatasourceConfigured
onMount(async () => { onMount(async () => {
@ -164,7 +166,7 @@
<Body size="S">Add the URL of the sheet you want to connect.</Body> <Body size="S">Add the URL of the sheet you want to connect.</Body>
<IntegrationConfigForm <IntegrationConfigForm
schema={datasource.schema} {schema}
bind:datasource bind:datasource
creating={true} creating={true}
on:valid={e => (isValid = e.detail)} on:valid={e => (isValid = e.detail)}