Skip to content

Commit

Permalink
chore: fix prettier formate issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AliKdhim87 committed Jul 26, 2023
1 parent 2cfc672 commit 049be3d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions apps/frontend/src/components/VegaVisualisation/index.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
'use client';

import { Vega, VisualizationSpec } from "react-vega";
import { Vega, VisualizationSpec } from 'react-vega';

interface VegaVisualisationProps {
spec: VisualizationSpec;
}

export const VegaVisualisation = ({ spec }: VegaVisualisationProps) => (
<Vega spec={spec} />
);
export const VegaVisualisation = ({ spec }: VegaVisualisationProps) => <Vega spec={spec} />;
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
* visualisatie controller
*/

import { factories } from '@strapi/strapi'
import { factories } from '@strapi/strapi';

export default factories.createCoreController('api::visualisatie.visualisatie');

0 comments on commit 049be3d

Please sign in to comment.