Change experiment button styling (#93)

* Change button styling

* Fix prettier
This commit is contained in:
arcticfly
2023-07-25 11:41:02 -07:00
committed by GitHub
parent fa61c9c472
commit 223b990005
3 changed files with 4 additions and 15 deletions

View File

@@ -157,7 +157,6 @@ export const queryModel = defineTask<QueryModelJob>("queryModel", async (task) =
});
export const queueQueryModel = async (cellId: string, stream: boolean) => {
console.log("queueQueryModel", cellId, stream);
await Promise.all([
prisma.scenarioVariantCell.update({
where: {
@@ -168,8 +167,6 @@ export const queueQueryModel = async (cellId: string, stream: boolean) => {
errorMessage: null,
},
}),
await queryModel.enqueue({ cellId, stream }),
console.log("queued"),
queryModel.enqueue({ cellId, stream }),
]);
};