We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6943bc commit 7d31245Copy full SHA for 7d31245
src/web/src/views/workspace/components/WSEditor/WSEditor.tsx
@@ -30,7 +30,7 @@ const swaggerResourcePickerTransition = React.forwardRef(function swaggerResourc
30
31
const drawerWidth = 300;
32
33
-function WSEditor({ params }: WSEditorProps) {
+const WSEditor = ({ params }: WSEditorProps) => {
34
const { workspaceName } = params;
35
36
const dialogManager = useDialogManager();
@@ -295,7 +295,7 @@ function WSEditor({ params }: WSEditorProps) {
295
)}
296
</>
297
);
298
-}
+};
299
300
const WSEditorWrapper = (props: any) => {
301
const params = useParams();
0 commit comments