Skip to content

Commit

Permalink
test potential fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thisconnect committed Nov 15, 2024
1 parent 90b9836 commit 542df0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontends/web/src/components/guide/entry.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const Entry = (props: TProps) => {
<div className={[style.entryContent, shown ? style.expanded : ''].join(' ')}>
{shown ? (
<div className="flex-1">
{entry.text.trim().split('\n').map((p, idx) => <p key={idx}>{p}</p>)}
{entry?.text?.trim().split('\n').map((p, idx) => <p key={idx}>{p}</p>)}
{entry.link && (
<p>
<A
Expand Down

0 comments on commit 542df0b

Please sign in to comment.