Refactor: Add tbody to RatingSmiley table for better structure

Co-authored-by: johannes <johannes@formbricks.com>
This commit is contained in:
Cursor Agent
2025-11-17 09:16:46 +00:00
parent 78a6d73ae8
commit bb3ff3a2c5

View File

@@ -66,13 +66,13 @@ const getSmiley = (
return (
<table style={{ width: "48px", height: "48px" }}>
{" "}
{/* NOSONAR S5256 - Need table layout for email compatibility (gmail) */}
<tr>
<td align="center" valign="middle">
{icon}
</td>
</tr>
<tbody>
<tr>
<td align="center" valign="middle">
{icon}
</td>
</tr>
</tbody>
</table>
);
};