Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
j8seangel committed Nov 15, 2024
1 parent 86e622e commit d1f377b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
1 change: 0 additions & 1 deletion src/app/casos-activos/solicitudes/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ import { HelpRequestData } from '@/types/Requests';
export type FilterType = 'search' | 'urgencia' | 'tipoAyuda' | 'pueblo' | 'soloSinAsignar';

export type FiltersData = Record<FilterType, string>;

2 changes: 1 addition & 1 deletion src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ body {

/* .maplibregl-ctrl-attrib {
display: none;
} */
} */
4 changes: 2 additions & 2 deletions src/components/layout/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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,
Expand Down
3 changes: 1 addition & 2 deletions src/components/map/map.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const Map: FC<MapProps> = ({ 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',
Expand All @@ -75,7 +75,6 @@ const Map: FC<MapProps> = ({ solicitudes, setSelectedMarker }) => {
],
},
'circle-stroke-width': 1,

}}
/>
</Source>
Expand Down

0 comments on commit d1f377b

Please sign in to comment.