Browse Source

minor fix

Yana Rose 4 years ago
parent
commit
ab60ad121e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/viewer/ui/export.tsx

+ 2 - 2
src/viewer/ui/export.tsx

@@ -11,12 +11,12 @@ export class ExportControls extends CollapsableControls {
             header: 'Export',
             isCollapsed: true,
             brand: { accent:  'gray' as const, svg: ExportOutlinedSvg }
-        }
+        };
     }
     protected renderControls(): JSX.Element | null {
         return <div className={'msp-control-offset'} style={{ paddingTop: '1px' }}>
             <CoordinatesExportControls />
-        </div>
+        </div>;
     }
 }