Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Corantin committed Sep 25, 2023
1 parent b846b43 commit 3dc8d96
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/nextjs/models/marker.model.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export type MarkerModel = {
id: number;
id: string;
name: string;
latitude: number;
longitude: number;
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/pages/agent-explorer/FilterBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const FilterBar = () => {
<input
ref={searchRef}
className="input input-lg input-bordered border-1 w-full"
placeholder="Enter a city, state, address or ZIP code"
placeholder="Agent name or username"
/>
<kbd className="bd bg-neutral-focus -ml-14 flex justify-center items-center w-10 h-10 rounded-xl">/</kbd>
</div>
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/pages/property-explorer/PropertyCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type Props = {

export default function PropertyCard({ property }: Props) {
return (
<figure className="card bg-base-100 shadow-xl p-2 bg-secondary border border-white border-opacity-10 font-['Montserrat']">
<figure className="card bg-base-100 shadow-xl p-2 border border-white border-opacity-10 font-['Montserrat']">
<Image src={property.photos[0]} alt="Picture" height={400} width={350} />
<div className="m-4">
<span className="flex flex-h w-fit gap-2">
Expand Down

0 comments on commit 3dc8d96

Please sign in to comment.