We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 531c833 commit dfb9ebdCopy full SHA for dfb9ebd
src/components/database/DatabaseViews.tsx
@@ -52,7 +52,6 @@ function DatabaseViews({
52
const views = database?.get(YjsDatabaseKey.views);
53
54
const [layout, setLayout] = useState<DatabaseViewLayout | null>(null);
55
- const viewContainerRef = useRef<HTMLDivElement | null>(null);
56
// Track the previous valid layout to prevent flash when switching to a new view
57
const prevLayoutRef = useRef<DatabaseViewLayout | null>(null);
58
@@ -148,7 +147,6 @@ function DatabaseViews({
148
147
<DatabaseConditions />
149
150
<div
151
- ref={viewContainerRef}
152
className={'relative flex h-full w-full flex-1 flex-col overflow-hidden'}
153
style={
154
fixedHeight !== undefined
0 commit comments