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
2 changes: 1 addition & 1 deletion src/components/post/PostDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export interface PostData {
nickname: string
profileImageUrl: string
content: string
albumId: number
albumId: number | null
images: PostImage[]
likeCount: number
commentCount: number
Expand Down
2 changes: 1 addition & 1 deletion src/features/create-post/ui/AlbumSelectDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export function AlbumSelectDropdown({
</DropdownMenuTrigger>
<DropdownMenuContent
align="start"
className="z-60 w-80 border-none bg-white p-0 shadow-[0_2px_8px_rgba(0,0,0,0.15)]"
className="z-[130] w-80 border-none bg-white p-0 shadow-[0_2px_8px_rgba(0,0,0,0.15)]"
>
<DropdownMenuRadioGroup
value={state.value}
Expand Down
4 changes: 2 additions & 2 deletions src/features/create-post/ui/DeleteAlbumDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ export function DeleteAlbumDialog({
<Dialog open={open} onOpenChange={onOpenChange}>
<DialogContent
showCloseButton={false}
overlayClassName="z-70"
className="z-70 w-[min(92vw,520px)] gap-0 overflow-hidden rounded-3xl bg-white p-0"
overlayClassName="z-[140]"
className="z-[140] w-[min(92vw,520px)] gap-0 overflow-hidden rounded-3xl bg-white p-0"
>
<div className="px-8 pt-10 pb-8 text-center">
<DialogTitle className="text-2xl leading-tight font-semibold">
Expand Down
2 changes: 1 addition & 1 deletion src/routes/_app/$userId/albums.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ function RouteComponent() {
</button>
</div>
<div className="flex h-96 flex-col items-center justify-center gap-2 text-sm text-gray-500">
<span>해당 앨범은 삭제되었습니다.</span>
<span>앨범 데이터를 찾을 수 없습니다.</span>
</div>
</div>
) : (
Expand Down