Skip to content

Commit

Permalink
Fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
TheUltDev committed Jun 11, 2023
1 parent 30f95f9 commit 016199f
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/components/Dock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,7 @@ const contentComponents: PanelCollection<IDockviewPanelProps> = {
),
preview: (props: IDockviewPanelProps<{url: string}>) => (
// @ts-ignore
<iframe
src={props.params.url}
allow="cross-origin-isolated"
credentialless
/>
<iframe src={props.params.url} allow="cross-origin-isolated" credentialless/>
),
};

Expand Down

0 comments on commit 016199f

Please sign in to comment.