From 4aa7a7623e8a84b930011d4d137a485e48268951 Mon Sep 17 00:00:00 2001 From: Richard Knoll Date: Tue, 26 Sep 2023 14:19:03 -0700 Subject: [PATCH] Update webapp/src/timeMachine.tsx Co-authored-by: Eric Anderson --- webapp/src/timeMachine.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/src/timeMachine.tsx b/webapp/src/timeMachine.tsx index f5f93e727330..37a449439bcc 100644 --- a/webapp/src/timeMachine.tsx +++ b/webapp/src/timeMachine.tsx @@ -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(undefined); const [loading, setLoading] = React.useState("loading"); const [entries, setEntries] = React.useState(getTimelineEntries(history));