Skip to content

Commit

Permalink
fix(handlers): correct typo in farcaster_meta HTML tag
Browse files Browse the repository at this point in the history
The typo in the HTML tag was causing improper rendering. Fixing the closing quote ensures valid HTML syntax.
  • Loading branch information
nekofar committed Dec 7, 2024
1 parent 254dd62 commit f4586e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ impl OpenGraphMeta {
let farcaster_meta = format!(
r#"
<meta property="fc:frame" content="vNext" />
<meta property="fc:frame:image" content="{image}\" />
<meta property="fc:frame:image" content="{image}" />
"#,
image = self.image,
);
Expand Down

0 comments on commit f4586e1

Please sign in to comment.