Skip to content

Commit ebf8b9e

Browse files
fuyalasmitactions-user
authored andcommitted
Prettified Code!
1 parent 369fd3d commit ebf8b9e

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

src/data/events.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -121,19 +121,19 @@ export async function getEvents({
121121
start: event.startDateLocalized,
122122
end: event.endDateLocalized,
123123
description: sanitizedDescription,
124-
});
125-
const calendarLinkOutlook = outlook({
124+
});
125+
const calendarLinkOutlook = outlook({
126126
title: event.title,
127127
start: event.startDateLocalized,
128128
end: event.endDateLocalized,
129129
description: sanitizedDescription,
130-
});
131-
const calendarLinkIcs = ics({
130+
});
131+
const calendarLinkIcs = ics({
132132
title: event.title,
133133
start: event.startDateLocalized,
134134
end: event.endDateLocalized,
135135
description: sanitizedDescription,
136-
});
136+
});
137137
return {
138138
...event,
139139
eventCalendarDescription: sanitizedDescription,

src/data/mocks/events.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ export function createEventsData({
2424
start: startDate.toUTC().toString(),
2525
end: startDate.toUTC().plus({ hours: 1 }).toString(),
2626
description: faker.lorem.paragraph(),
27-
});
28-
const calendarLinkOutlook = outlook({
27+
});
28+
const calendarLinkOutlook = outlook({
2929
title: faker.lorem.sentence(7),
3030
start: startDate.toUTC().toString(),
3131
end: startDate.toUTC().plus({ hours: 1 }).toString(),
3232
description: faker.lorem.paragraph(),
33-
});
34-
const calendarLinkIcs = ics({
33+
});
34+
const calendarLinkIcs = ics({
3535
title: faker.lorem.sentence(7),
3636
start: startDate.toUTC().toString(),
3737
end: startDate.toUTC().plus({ hours: 1 }).toString(),
3838
description: faker.lorem.paragraph(),
39-
});
39+
});
4040

4141
return {
4242
id: faker.string.uuid(),

0 commit comments

Comments
 (0)