Skip to content

Commit

Permalink
MORE
Browse files Browse the repository at this point in the history
  • Loading branch information
spencerc99 committed Aug 18, 2024
1 parent c3da679 commit 547d480
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion website/events/gray-area/gray-area.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,7 @@ const Guestbook = withSharedState(
{from ? ` (${from})` : ""} says...
</span>
<textarea
maxLength={800}
placeholder="message"
value={message}
onChange={(e) => setMessage(e.target.value)}
Expand All @@ -507,6 +508,7 @@ const Guestbook = withSharedState(
display: "flex",
flexDirection: "column",
marginBottom: "1em",
fontSize: "80%",
}}
>
<div>
Expand All @@ -527,7 +529,7 @@ const Guestbook = withSharedState(
{new Date(entry.timestamp).toLocaleString()}
</div>
</div>
<div>{entry.message}</div>
<div style={{}}>{entry.message}</div>
</div>
))}
</div>
Expand Down

0 comments on commit 547d480

Please sign in to comment.