Skip to content

Commit

Permalink
Merge pull request #10211 from hicommonwealth/israel.10206.trpc-lengt…
Browse files Browse the repository at this point in the history
…h-error

no more trpc length error
  • Loading branch information
ilijabojanovic authored Dec 10, 2024
2 parents 443d06f + 2b0cc86 commit f0980d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const HeaderWithFilters = ({
const contestAddress = searchParams.get('contest');

const createButtonText =
activeContests.length || contestAddress ? 'Create' : 'Create thread';
activeContests?.length || contestAddress ? 'Create' : 'Create thread';

const onFilterResize = () => {
if (filterRowRef.current) {
Expand Down

0 comments on commit f0980d9

Please sign in to comment.