mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-15 16:55:06 -05:00
tsc fix
This commit is contained in:
committed by
psychedelicious
parent
702054aa62
commit
df90da28e1
@@ -21,7 +21,10 @@ type Props = {
|
||||
extraCopyActions?: { label: string; getData: (data: unknown) => unknown }[];
|
||||
} & FlexProps;
|
||||
|
||||
const overlayscrollbarsOptions = getOverlayScrollbarsParams('scroll', 'scroll').options;
|
||||
const overlayscrollbarsOptions = getOverlayScrollbarsParams({
|
||||
overflowX: 'scroll',
|
||||
overflowY: 'scroll',
|
||||
}).options;
|
||||
|
||||
const DataViewer = (props: Props) => {
|
||||
const { label, data, fileName, withDownload = true, withCopy = true, extraCopyActions, ...rest } = props;
|
||||
|
||||
Reference in New Issue
Block a user