Skip to content

Commit

Permalink
Resolved merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Bgmi10 committed Dec 18, 2024
2 parents 4923fbf + 20d3116 commit 6cc4c39
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 10 deletions.
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"workbench.colorCustomizations": {
"panel.border": "#fedd7c"
}
}
7 changes: 3 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@ services:
- NEXT_WEBPACK_USEPOLLING=1
ports:
- '3000:3000'
- '5555:5555'
volumes:
# - .:/usr/src/app
- .:/usr/src/app
- /usr/src/app/.next
- /usr/src/app/node_modules
depends_on:
Expand All @@ -35,8 +34,8 @@ services:
healthcheck:
test: [ 'CMD-SHELL', 'pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}' ]
interval: 10s
timeout: 5s
timeout: 10s
retries: 5

volumes:
postgres-data:
postgres-data:
4 changes: 2 additions & 2 deletions src/components/BreadCrumbComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default function BreadCrumbComponent({
<Breadcrumb>
<BreadcrumbList>
<BreadcrumbItem>
<BreadcrumbLink className="text-sm text-blue-600" asChild>
<BreadcrumbLink className="text-blue-600" asChild>
<Link href={'/'}>
<Home className="size-4" />
</Link>
Expand All @@ -72,7 +72,7 @@ export default function BreadCrumbComponent({
<BreadcrumbLink className="text-blue-600" asChild>
<Link
href={`/courses/${course.id}`}
className="text-sm font-semibold capitalize text-primary/60"
className="text-xs font-semibold capitalize text-primary/60"
>
{course.title}
</Link>
Expand Down
2 changes: 1 addition & 1 deletion src/components/CourseView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,4 @@ export const CourseView = ({
) : null}
</div>
);
};
};
2 changes: 1 addition & 1 deletion src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -309,4 +309,4 @@ function Check({ content }: { content: any }) {
className="focus:ring-none h-4 w-4 rounded-md border-primary/10"
/>
);
}
}
2 changes: 1 addition & 1 deletion src/components/admin/AddContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -315,4 +315,4 @@ function AddVideoMetadata({ onChange }: { onChange: (metadata: any) => void }) {
/>
</div>
);
}
}
2 changes: 1 addition & 1 deletion src/components/admin/UpdateVideoClient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -250,4 +250,4 @@ export const UpdateVideoClient = ({
</Accordion>
</div>
);
};
};

0 comments on commit 6cc4c39

Please sign in to comment.