From c7a04dcc700bd524a2080aa339ee014189526caf Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Mon, 29 Jun 2026 15:20:52 -0400 Subject: [PATCH] fix(ui): poll checkmark uses folds Icon instead of Unicode glyph (native-cinny nit) Co-Authored-By: Claude Opus 4.8 --- src/app/components/message/content/PollContent.tsx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/app/components/message/content/PollContent.tsx b/src/app/components/message/content/PollContent.tsx index 643e3f5ba..6f811d22c 100644 --- a/src/app/components/message/content/PollContent.tsx +++ b/src/app/components/message/content/PollContent.tsx @@ -1,6 +1,6 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ import React, { useCallback, useEffect, useState } from 'react'; -import { Box, color, config, Text, toRem } from 'folds'; +import { Box, color, config, Icon, Icons, Text, toRem } from 'folds'; import { RelationsEvent } from 'matrix-js-sdk/lib/models/relations'; import { RoomEvent } from 'matrix-js-sdk'; import { useMatrixClient } from '../../../hooks/useMatrixClient'; @@ -339,11 +339,7 @@ export function PollContent({ transition: 'all 0.15s', }} > - {selected && isMultiple ? ( - - ✓ - - ) : null} + {selected && isMultiple ? : null} {text}