fix: limit

This commit is contained in:
Fredrik Burmester
2024-08-14 10:47:31 +02:00
parent 0c98980b1d
commit 3c678add0f

View File

@@ -7,7 +7,7 @@ interface Props extends ViewProps {
text?: string | null;
}
const LIMIT = 150;
const LIMIT = 140;
export const OverviewText: React.FC<Props> = ({ text, ...props }) => {
const [limit, setLimit] = useState(LIMIT);