We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 088e682 commit c28c968Copy full SHA for c28c968
front/src/pages/ProgramsPage/index.tsx
@@ -18,7 +18,7 @@ export default function ProgramsPage() {
18
const programs = data;
19
//현재 데이터가 없어서 mock 대체
20
return (
21
- <ul className="grid grid-cols-[repeat(5,minmax(auto,_1fr))] gap-6 overflow-auto">
+ <ul className="grid grid-cols-[repeat(4,minmax(auto,_1fr))] gap-6 overflow-auto">
22
{programs.map((program) => (
23
<li key={program.id}>
24
<Link to={ROUTE_URL.PROGRAM.PROGRAM_DETAIL(program.id)}>
0 commit comments