diff --git a/src/components/ModForm.tsx b/src/components/ModForm.tsx index 8546125..67e1f3f 100644 --- a/src/components/ModForm.tsx +++ b/src/components/ModForm.tsx @@ -1,6 +1,7 @@ import _ from 'lodash' import { Event, kinds, nip19, UnsignedEvent } from 'nostr-tools' import React, { + CSSProperties, Fragment, useCallback, useEffect, @@ -10,7 +11,7 @@ import React, { } from 'react' import { Link, useLocation, useNavigate } from 'react-router-dom' import { toast } from 'react-toastify' -import { FixedSizeList as List } from 'react-window' +import { VariableSizeList, FixedSizeList } from 'react-window' import { v4 as uuidv4 } from 'uuid' import { T_TAG_VALUE } from '../constants' import { useAppSelector, useGames, useNDKContext } from '../hooks' @@ -865,7 +866,7 @@ const GameDropdown = ({
>