Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Correct Class Names and Typos #11

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ export default function Demo() {
When you load this in the Warpcast frames playground, you should see your own Farcaster user profile:

> [!WARNING]
> For the Framesgiving developer preview, context data is unauthenticated. Assume this data is spoofable and don't use it to grant privileged access to the user! Future frame SDK releases will include a mechanism fo verify context data.
> For the Framesgiving developer preview, context data is unauthenticated. Assume this data is spoofable and don't use it to grant privileged access to the user! Future frame SDK releases will include a mechanism to verify context data.

<img src="https://raw.githubusercontent.com/farcasterxyz/frames-v2-demo/refs/heads/main/docs/img/6_context.PNG" width="200" alt="Context" />

Expand Down Expand Up @@ -453,7 +453,7 @@ export default function Demo() {
<h1 className="text-2xl font-bold text-center mb-4">Frames v2 Demo</h1>

<div className="mb-4">
<h2 className="font-2xl font-bold">Context</h2>
<h2 className="text-2xl font-bold">Context</h2>
<button
onClick={toggleContext}
className="flex items-center gap-2 transition-colors"
Expand Down Expand Up @@ -524,7 +524,7 @@ export default function Demo() {
{/* context toggle and data */}

<div>
<h2 className="font-2xl font-bold">Actions</h2>
<h2 className="text-2xl font-bold">Actions</h2>

<div className="mb-4">
<div className="p-2 bg-gray-100 dark:bg-gray-800 rounded-lg my-2">
Expand Down
4 changes: 2 additions & 2 deletions src/components/Demo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export default function Demo(
<h1 className="text-2xl font-bold text-center mb-4">{title}</h1>

<div className="mb-4">
<h2 className="font-2xl font-bold">Context</h2>
<h2 className="text-2xl font-bold">Context</h2>
<button
onClick={toggleContext}
className="flex items-center gap-2 transition-colors"
Expand All @@ -218,7 +218,7 @@ export default function Demo(
</div>

<div>
<h2 className="font-2xl font-bold">Actions</h2>
<h2 className="text-2xl font-bold">Actions</h2>

<div className="mb-4">
<div className="p-2 bg-gray-100 dark:bg-gray-800 rounded-lg my-2">
Expand Down