diff --git a/src/lib/wizards/functions/steps/createRepository.svelte b/src/lib/wizards/functions/steps/createRepository.svelte
index 2b8247a32..d6126890c 100644
--- a/src/lib/wizards/functions/steps/createRepository.svelte
+++ b/src/lib/wizards/functions/steps/createRepository.svelte
@@ -103,25 +103,23 @@
{:then installations}
{#if hasInstallations}
-
-
- {
- return {
- label: entry.organization,
- value: entry.$id
- };
- })}
- on:change={() => {
- $installation = installations.find(
- (entry) => entry.$id === selectedInstallationId
- );
- }}
- bind:value={selectedInstallationId} />
-
-
+
+ {
+ return {
+ label: entry.organization,
+ value: entry.$id
+ };
+ })}
+ on:change={() => {
+ $installation = installations.find(
+ (entry) => entry.$id === selectedInstallationId
+ );
+ }}
+ bind:value={selectedInstallationId} />
+
{:else}