= ({ values }) => {
)}
diff --git a/app/routes/meetings/components/MeetingEditor.tsx b/app/routes/meetings/components/MeetingEditor.tsx
index 4272c0ef7b..e14455b612 100644
--- a/app/routes/meetings/components/MeetingEditor.tsx
+++ b/app/routes/meetings/components/MeetingEditor.tsx
@@ -8,7 +8,7 @@ import {
} from '@webkom/lego-bricks';
import { usePreparedEffect } from '@webkom/react-prepare';
import { unionBy } from 'lodash';
-import { Trash2 } from 'lucide-react';
+import { LucideSquareArrowOutUpRight, Trash2 } from 'lucide-react';
import moment from 'moment-timezone';
import { useState } from 'react';
import { Field, FormSpy } from 'react-final-form';
@@ -309,20 +309,21 @@ const MeetingEditor = () => {
type="checkbox"
component={CheckBox.Field}
/>
- {spyValues((values) => {
- return values?.useMazemap ? (
-
+ {spyValues((values) =>
+ values?.useMazemap ? (
+
- {values?.mazemapPoi?.value > 0 && (
+ {values?.mazemapPoi?.value && (
)}
@@ -334,9 +335,8 @@ const MeetingEditor = () => {
placeholder="Sted for møte"
component={TextInput.Field}
/>
- );
- })}
-
+ ),
+ )}