Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FW-6297 Square corners on right side of selector modal #731

Merged
merged 2 commits into from
Jan 8, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function AddMediaModalWrapper({
>
<div
id="AddMediaModalWrapper"
className="h-4/5-screen w-3/4-screen mx-auto rounded-lg overflow-y-scroll bg-charcoal-50 p-6"
className="h-4/5-screen w-3/4-screen mx-auto rounded-lg overflow-hidden bg-charcoal-50 p-6"
>
<div className="h-full flex flex-col space-y-4">
<h2 className="text-center text-2xl font-bold text-charcoal-900">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function DashboardJoinListPresentation({ joinRequestsInfiniteQueryResponse }) {
id="EntriesListPresentation"
className="flex flex-col w-full bg-white rounded-lg"
>
<div className="divide-y divide-charcoal-100">
<ul className="divide-y divide-charcoal-100 list-none">
{joinRequestsInfiniteQueryResponse?.data?.pages.map((page) => (
<Fragment key={page?.pageNumber}>
{page.results.map((request) => (
Expand All @@ -28,7 +28,7 @@ function DashboardJoinListPresentation({ joinRequestsInfiniteQueryResponse }) {
<InfiniteLoadBtn
infiniteQueryResponse={joinRequestsInfiniteQueryResponse}
/>
</div>
</ul>
</div>
) : (
<div className="w-full flex">
Expand Down
Loading