bug: enable creating a new card with mulitple labels

This commit is contained in:
Henry
2024-08-12 21:29:20 +01:00
parent 250d23d2ae
commit ff5802b953
2 changed files with 2 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ export const getAllByPublicIds = async (
const { data } = await db
.from("label")
.select(`id`)
.eq("publicId", labelPublicIds);
.in("publicId", labelPublicIds);
return data;
};