change url /profile/schedule/slot/ -> /slots/

This commit is contained in:
vchikalkin 2025-02-12 12:02:47 +03:00
parent 3fc34a5b96
commit 22a15f8aa6
2 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ export const SlotCard = withContext(ContextProvider)(function (
const isClosed = data?.slot?.state === Enum_Slot_State.Closed;
return (
<Link href={`/profile/schedule/slot/${documentId}`} rel="noopener noreferrer">
<Link href={`/slots/${documentId}`} rel="noopener noreferrer">
<div className="flex items-center justify-between rounded-2xl bg-background p-4 px-6 dark:bg-primary/5">
<div className="flex flex-col gap-2">
<ReadonlyTimeRange {...data.slot} />