Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremywiebe committed May 3, 2024
1 parent 5819013 commit da05d91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev/flipbook.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export function Flipbook() {
const questionsState = state.questions.trim();
const noTextEntered = questionsState === "";

const graphieImageUrls = useMemo<ReadonlyArray<string>>(
const imageUrls = useMemo<ReadonlyArray<string>>(
() =>
Object.values(question?.widgets ?? {})
.filter(isInteractiveGraph)
Expand Down Expand Up @@ -159,7 +159,7 @@ export function Flipbook() {
}
rightContent={
<View>
{graphieImageUrls?.map((url) => (
{imageUrls?.map((url) => (
<Tooltip
key={url}
placement="right"
Expand Down

0 comments on commit da05d91

Please sign in to comment.