Skip to content

Commit

Permalink
Fix reference to overwatcher comments in night log sections
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Nov 18, 2024
1 parent 30b4361 commit d4661ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/night-logs/[[...mjd]]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ export type NightLogData = {
issues: NightLogComment[];
weather: NightLogComment[];
other: NightLogComment[];
overwatcher: NightLogComment[];
};
metrics: NightMetrics;
exposure_table: string | null;
Expand Down
2 changes: 1 addition & 1 deletion app/night-logs/[[...mjd]]/sections.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ export default function Sections(props: SectionsProps) {
<Section
title="Overwatcher"
category="overwatcher"
data={data.comments.other}
data={data.comments.overwatcher}
mjd={mjd}
refresh={refresh}
current={current}
Expand Down

0 comments on commit d4661ff

Please sign in to comment.