Skip to content

Commit d7f5ab1

Browse files
committed
removed dev log outs
1 parent 9dff0ee commit d7f5ab1

File tree

4 files changed

+18
-7
lines changed

4 files changed

+18
-7
lines changed

library/src/components/timetable/LPTimeTable.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,6 @@ const LPTimeTableImpl = <G extends TimeTableGroup, I extends TimeSlotBooking>({
209209
//#region calculate time slots, dates array and the final time steps size in minutes
210210
const { slotsArray, timeFrameDay, timeSlotMinutes } = useMemo(() => {
211211
// to avoid overflow onto the next day if the time steps are too large
212-
console.log("TIME STEPS MINUTES", startDate, viewType, endDate)
213212
const { timeFrameDay, slotsArray, timeSlotMinutes } =
214213
calculateTimeSlotPropertiesForView(
215214
startDate,
@@ -219,8 +218,6 @@ const LPTimeTableImpl = <G extends TimeTableGroup, I extends TimeSlotBooking>({
219218
setMessage,
220219
)
221220

222-
console.log("SLOTS ARRAY", slotsArray.length)
223-
224221
return { slotsArray, timeFrameDay, timeSlotMinutes }
225222
}, [viewType, startDate, endDate, timeStepsMinutes, setMessage])
226223
//#endregion

showcase/public/showcase-sources.txt

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1777,7 +1777,7 @@ const exampleEntries: TimeTableEntry<ExampleGroup, ExampleItem>[] = [
17771777
},
17781778
items: [],
17791779
},
1780-
{
1780+
/*{
17811781
group: {
17821782
title: "Group 1",
17831783
subtitle: "Group 1 description",
@@ -2055,6 +2055,20 @@ const exampleEntries: TimeTableEntry<ExampleGroup, ExampleItem>[] = [
20552055
title: "Item 6-2-2",
20562056
},
20572057
],
2058+
},*/
2059+
{
2060+
group: {
2061+
title: "Group 7 (Full Day)",
2062+
subtitle: "Whole Time Frame",
2063+
},
2064+
items: [
2065+
{
2066+
// this case ends after the end of the day and starts before
2067+
startDate: dayjs().startOf("day"),
2068+
endDate: dayjs().endOf("day"),
2069+
title: "Item 7-1",
2070+
},
2071+
],
20582072
},
20592073
]
20602074

showcase/src/components/showcase/wrapper/LPTimeTableShowcase.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const exampleEntries: TimeTableEntry<ExampleGroup, ExampleItem>[] = [
4545
},
4646
items: [],
4747
},
48-
/*{
48+
{
4949
group: {
5050
title: "Group 1",
5151
subtitle: "Group 1 description",
@@ -323,7 +323,7 @@ const exampleEntries: TimeTableEntry<ExampleGroup, ExampleItem>[] = [
323323
title: "Item 6-2-2",
324324
},
325325
],
326-
},*/
326+
},
327327
{
328328
group: {
329329
title: "Group 7 (Full Day)",

showcase/src/page/IntroPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { token } from "@atlaskit/tokens"
66

77
const releaseTag = import.meta.env.VITE_GH_RELEASE_TAG
88

9-
console.log("RELEASE TAG", releaseTag)
9+
console.log("ui-kit-ts release:", releaseTag)
1010

1111
const Code = styled.div`
1212
overflow: auto;

0 commit comments

Comments
 (0)