temp fix when no remotes

This commit is contained in:
FTCHD
2025-01-26 13:21:35 +02:00
parent eff6880679
commit 9860adc86a
+1 -1
View File
@@ -17,7 +17,7 @@ export async function listRemotes() {
throw new Error('Failed to fetch remotes')
}
return r.remotes
return r.remotes || []
}
export async function getRemote(remote: string) {