Skip to content

Commit

Permalink
Update webapp/src/timeMachine.tsx
Browse files Browse the repository at this point in the history
Co-authored-by: Eric Anderson <[email protected]>
  • Loading branch information
riknoll and eanders-ms authored Sep 26, 2023
1 parent f278efb commit 4aa7a76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/timeMachine.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ type FrameState = "loading" | "loaded" | "loading-project" | "loaded-project";
export const TimeMachine = (props: TimeMachineProps) => {
const { text, history, onProjectLoad, onProjectCopy } = props;

// undefind here is a standin for "now"
// undefined here is a standin for "now"
const [selected, setSelected] = React.useState<TimeEntry>(undefined);
const [loading, setLoading] = React.useState<FrameState>("loading");
const [entries, setEntries] = React.useState(getTimelineEntries(history));
Expand Down

0 comments on commit 4aa7a76

Please sign in to comment.