Skip to content

Commit 0a6467a

Browse files
committed
Remove implicit any from the Playground component
1 parent 7777722 commit 0a6467a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/frontend/Playground.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ const ResizableArea: React.FC = () => {
5050
// Reset styles left on the grid from split-grid when we change orientation or focus.
5151
useEffect(() => {
5252
if (grid.current) {
53-
grid.current.style['grid-template-columns'] = null;
54-
grid.current.style['grid-template-rows'] = null;
53+
grid.current.style.removeProperty('grid-template-columns');
54+
grid.current.style.removeProperty('grid-template-rows');
5555
}
5656

5757
resizeComplete();

0 commit comments

Comments
 (0)