chore: more ts fixes

This commit is contained in:
Arman
2025-05-15 12:05:36 +02:00
parent ca41c431de
commit a141506d9c
4 changed files with 6 additions and 3 deletions
+3 -1
View File
@@ -42,7 +42,7 @@
} = $props();
let search = $state('');
let selectedInstallation = null;
let selectedInstallation: string = null;
let isLoadingRepositories = $state(null);
async function loadInstallations() {
@@ -110,6 +110,8 @@
$repositories.search = search;
$repositories.installationId = installationId;
}
$inspect(selectedRepository);
</script>
{#if hasInstallations}
@@ -18,7 +18,7 @@
let domain = baseDomain;
let domainStatus: 'complete' | 'failed' | 'pending' = 'complete';
let error = null;
let error: string = null;
async function onSubmit() {
try {
await sdk
@@ -11,7 +11,7 @@
export let file: Models.File;
export let token: Models.ResourceToken;
let error = null;
let error: boolean = null;
let codeSnippets = {};
let selectedTab = 'Preview';
+1
View File
@@ -11,6 +11,7 @@
"strict": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "bundler"
}
}