Skip to content

Commit

Permalink
env
Browse files Browse the repository at this point in the history
  • Loading branch information
mluena committed Feb 23, 2024
1 parent 8549145 commit 26649f1
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions client/src/app/projects/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Metadata } from 'next';

import Filters from '@/containers/filters';
// import Filters from '@/containers/filters';
import Panel from '@/containers/panel';
import ProjectsList from '@/containers/projects/list';

Expand All @@ -14,7 +14,7 @@ export default function Projects() {
<Panel>
<div className="space-y-5 p-5">
<h2 className="text-3xl font-normal">Projects</h2>
<Filters />
{/* <Filters /> */}
<ProjectsList />
</div>
</Panel>
Expand Down
2 changes: 2 additions & 0 deletions client/src/containers/map/layer-manager/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { Layer } from 'react-map-gl';

import { useAtomValue } from 'jotai';
Expand Down
2 changes: 2 additions & 0 deletions client/src/containers/map/legend/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { useCallback, useMemo } from 'react';

import { useAtom } from 'jotai';
Expand Down
2 changes: 2 additions & 0 deletions client/src/containers/map/popup/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { Popup } from 'react-map-gl';

import { useAtomValue, useAtom } from 'jotai';
Expand Down
2 changes: 2 additions & 0 deletions client/src/containers/map/popup/item.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { useCallback, useEffect, useMemo, useRef, useState } from 'react';

import { useMap } from 'react-map-gl';
Expand Down
2 changes: 2 additions & 0 deletions client/src/containers/map/settings/basemaps/item/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { useCallback } from 'react';

import Image from 'next/image';
Expand Down
2 changes: 0 additions & 2 deletions client/src/containers/projects/item.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use client';

import Image from 'next/image';
import Link from 'next/link';

Expand Down

0 comments on commit 26649f1

Please sign in to comment.