refine join workflow

This commit is contained in:
Johannes Kirschbauer
2023-09-30 16:00:21 +02:00
parent 2f73b47efc
commit 1c685bdf33
16 changed files with 497 additions and 279 deletions

View File

@@ -16,7 +16,7 @@ export const useVms = (options: UseVmsOptions) => {
useEffect(() => {
const getVmInfo = async (url: string, attr: string) => {
if (url === "") {
if (url === "" || !url) {
toast.error("Flake url is missing", { id: "missing.flake.url" });
return undefined;
}