remove unused imports
This commit is contained in:
parent
5aecaa8370
commit
bb2f3f93d3
1 changed files with 0 additions and 1 deletions
|
@ -21,7 +21,6 @@ export default function FilePreview({ url: initialUrl = '', filename: initialFil
|
||||||
const [loading, setLoading] = useState(false);
|
const [loading, setLoading] = useState(false);
|
||||||
const [fileType, setFileType] = useState<string | null>(null);
|
const [fileType, setFileType] = useState<string | null>(null);
|
||||||
const [isVisible, setIsVisible] = useState(false);
|
const [isVisible, setIsVisible] = useState(false);
|
||||||
const [isExpanded, setIsExpanded] = useState(false);
|
|
||||||
const [visibleLines, setVisibleLines] = useState(20);
|
const [visibleLines, setVisibleLines] = useState(20);
|
||||||
const CHUNK_SIZE = 50; // Number of additional lines to show when expanding
|
const CHUNK_SIZE = 50; // Number of additional lines to show when expanding
|
||||||
const INITIAL_LINES_TO_SHOW = 20;
|
const INITIAL_LINES_TO_SHOW = 20;
|
||||||
|
|
Loading…
Reference in a new issue