Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions src/features/home/ui/CompanyFilterList.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import { Ellipsis } from "lucide-react";
import clsx from "clsx";
import type {
CompanyResponseDto,
CompanyType,
} from "../api/company.types";
import type { CompanyResponseDto, CompanyType } from "../api/company.types";
import { CompaniesModal } from "./CompaniesModal";
import { CompanyItem } from "./CompanyItem";
import { HomeCompanySelectBtn } from "./HomeCompanySelectBtn";
Expand Down Expand Up @@ -40,7 +37,7 @@ export const CompanyFilterList = ({
<div className="flex items-center gap-4 flex-wrap pb-6 font-strong">
{companyData.companies.length !== 0 && (
<>
<div className="body-sb-14">μ„ νƒλœ κΈ°μ—…:</div>
<div className="body-sb-14 text-red-300">μ„ νƒλœ κΈ°μ—…:</div>
{companies.map(company => {
const matchedCompany = companyMap[company];
return (
Expand Down
3 changes: 1 addition & 2 deletions src/features/home/ui/SearchPostList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ const SearchPostList = ({ query }: SearchPostListProps) => {
if (!searchData || searchData.length === 0) {
return <div className="py-20 text-center">검색 κ²°κ³Όκ°€ μ—†μŠ΅λ‹ˆλ‹€.</div>;
}

// console.log(searchData);
console.log("test");
return (
<div>
<ul className="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 gap-4 mt-10">
Expand Down
Loading