Skip to content

Commit fe83227

Browse files
Copilotbartaz
andauthored
Fix nested <p> tag hydration error in new snap notification (#5446)
* Initial plan * Fix nested <p> tag hydration error in NewSnapNotification Co-authored-by: bartaz <83575+bartaz@users.noreply.github.com> * Add comprehensive QA steps for testing notification fix Co-authored-by: bartaz <83575+bartaz@users.noreply.github.com> * Remove QA_STEPS.md file per feedback Co-authored-by: bartaz <83575+bartaz@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: bartaz <83575+bartaz@users.noreply.github.com>
1 parent ae03b10 commit fe83227

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

static/js/publisher/components/NewSnapNotification/NewSnapNotification.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function NewSnapNotification({ snap }: { snap: ISnap }): React.JSX.Element {
1313
return (
1414
<>
1515
<Notification severity="information" title={title}>
16-
<p>
16+
<>
1717
Want to improve the listing in stores?
1818
<Link
1919
href={`/${snapName}/listing`}
@@ -34,7 +34,7 @@ function NewSnapNotification({ snap }: { snap: ISnap }): React.JSX.Element {
3434
</Link>
3535
</>
3636
)}
37-
</p>
37+
</>
3838
</Notification>
3939
</>
4040
);

0 commit comments

Comments
 (0)