Update deps, fix Docker build errors

This commit is contained in:
Darren Clarke 2024-05-14 09:40:58 +02:00
parent 162390008b
commit c62bfd2a4c
31 changed files with 832 additions and 1227 deletions

View file

@ -26,7 +26,7 @@ export const createTicketAction = async (
setBody("");
};
*/
try {
const ticket = {
title: formData.get("title"),
@ -50,12 +50,14 @@ export const createTicketAction = async (
} catch (e: any) {
return { success: false, message: e?.message ?? "Unknown error" };
}
*/
};
export const updateTicketAction = async (
currentState: any,
formData: FormData,
) => {
/*
try {
const { id, project } = currentState.values;
const updatedTicket = {
@ -80,12 +82,14 @@ export const updateTicketAction = async (
} catch (e: any) {
return { success: false, message: e?.message ?? "Unknown error" };
}
*/
};
export const updateTicketTagsAction = async (
currentState: any,
formData: FormData,
) => {
/*
try {
const { id, project } = currentState.values;
const updatedTicket = {
@ -110,4 +114,5 @@ export const updateTicketTagsAction = async (
} catch (e: any) {
return { success: false, message: e?.message ?? "Unknown error" };
}
*/
};