diff --git a/frontend/packages/ux-editor/src/components/config/Expressions/NewExpressionButton/NewExpressionButton.tsx b/frontend/packages/ux-editor/src/components/config/Expressions/NewExpressionButton/NewExpressionButton.tsx
index 9a21f9b9b75..61fb368a6f4 100644
--- a/frontend/packages/ux-editor/src/components/config/Expressions/NewExpressionButton/NewExpressionButton.tsx
+++ b/frontend/packages/ux-editor/src/components/config/Expressions/NewExpressionButton/NewExpressionButton.tsx
@@ -1,5 +1,4 @@
import React from 'react';
-import { DropdownMenu } from '@digdir/design-system-react';
import { PlusIcon } from '@studio/icons';
import { useText } from '../../../../hooks';
import { StudioDropdownMenu } from '@studio/components';
@@ -48,7 +47,7 @@ const MenuItem = ({ property }: { property: FormItemProperty }) => {
await debounceSave(); // Todo: handleSave does not work here. Will probably be fixed by https://github.com/Altinn/altinn-studio/issues/12383.
};
- return {text};
+ return {text};
};
const useAddExpressionText = (property: FormItemProperty) => {