diff --git a/src/app/casos-activos/solicitudes/types.ts b/src/app/casos-activos/solicitudes/types.ts index dbbc71f..a9e500d 100644 --- a/src/app/casos-activos/solicitudes/types.ts +++ b/src/app/casos-activos/solicitudes/types.ts @@ -3,4 +3,3 @@ import { HelpRequestData } from '@/types/Requests'; export type FilterType = 'search' | 'urgencia' | 'tipoAyuda' | 'pueblo' | 'soloSinAsignar'; export type FiltersData = Record; - diff --git a/src/app/globals.css b/src/app/globals.css index 2267346..8bdd657 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -18,4 +18,4 @@ body { /* .maplibregl-ctrl-attrib { display: none; -} */ \ No newline at end of file +} */ diff --git a/src/components/layout/Sidebar.tsx b/src/components/layout/Sidebar.tsx index 8615d3b..305dbf0 100644 --- a/src/components/layout/Sidebar.tsx +++ b/src/components/layout/Sidebar.tsx @@ -25,7 +25,7 @@ import { SelectedHelpData } from '@/types/Requests'; import { getOffersByUser, getRequestsByUser } from '@/lib/actions'; import { useSession } from '../../context/SessionProvider'; -export const SOLICITUDES_PATH = '/casos-activos/solicitudes' +export const SOLICITUDES_PATH = '/casos-activos/solicitudes'; type SidebarProps = { isOpen: boolean; @@ -61,7 +61,7 @@ export default function Sidebar({ isOpen, toggleAction }: SidebarProps) { path: SOLICITUDES_PATH, color: 'text-orange-600', highlight: true, - closeOnClick: true + closeOnClick: true, }, { icon: Inbox, diff --git a/src/components/map/map.tsx b/src/components/map/map.tsx index 819d6a3..250393b 100644 --- a/src/components/map/map.tsx +++ b/src/components/map/map.tsx @@ -55,7 +55,7 @@ const Map: FC = ({ solicitudes, setSelectedMarker }) => { id="solicitudes-circles" type="circle" paint={{ - 'circle-radius': ['interpolate', ['linear'], ['zoom'], 3, 3, 12, 7, 20, 200], + 'circle-radius': ['interpolate', ['linear'], ['zoom'], 3, 3, 12, 7, 20, 200], 'circle-color': { property: 'urgency', type: 'categorical', @@ -75,7 +75,6 @@ const Map: FC = ({ solicitudes, setSelectedMarker }) => { ], }, 'circle-stroke-width': 1, - }} />