mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 08:09:33 +01:00
[WEB-3184] fix: link messages (#6535)
This commit is contained in:
@@ -29,7 +29,7 @@ export const useLinkOperations = (
|
||||
});
|
||||
} catch (error: any) {
|
||||
setToast({
|
||||
message: error?.data?.error ?? "The link could not be created",
|
||||
message: error?.data?.url?.error ?? "The link could not be created",
|
||||
type: TOAST_TYPE.ERROR,
|
||||
title: "Link not created",
|
||||
});
|
||||
@@ -45,9 +45,9 @@ export const useLinkOperations = (
|
||||
type: TOAST_TYPE.SUCCESS,
|
||||
title: "Link updated",
|
||||
});
|
||||
} catch (error) {
|
||||
} catch (error: any) {
|
||||
setToast({
|
||||
message: "The link could not be updated",
|
||||
message: error?.data?.url?.error ?? "The link could not be updated",
|
||||
type: TOAST_TYPE.ERROR,
|
||||
title: "Link not updated",
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user