-
Notifications
You must be signed in to change notification settings - Fork 2
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
fix: PASSU 문제 해결 #444
Open
jongse7
wants to merge
4
commits into
main
Choose a base branch
from
fix/#441_passu_issue
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
fix: PASSU 문제 해결 #444
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
- resolved #439 결과물 이미지  ``` **// fileUrl에서 확장자명을 추출한 후 대문자로 변경 const lastDotIndex = file.fileUrl.lastIndexOf('.'); const fileExtension = lastDotIndex !== -1 ? file.fileUrl.substring(lastDotIndex + 1) : '';** return ( <a className={cn( buttonVariants(), 'h-[31px] w-[143px] rounded-[9px] bg-gray-200 text-[16px] font-medium text-gray-600', 'cursor-pointer overflow-hidden text-ellipsis whitespace-nowrap px-2 hover:text-white', className )} title={file.fileType} href={file.fileUrl} download={file.fileName} > **{`${file.fileType} ${fileExtension.toUpperCase()}`}** </a> ); ``` 확장자명 앞에만 .이 있는 게 아니라서 마지막 .을 기준으로 문자열 끝까지를 확장자명으로 추출했습니다. 디자인에는 확장자명을 대문자로 표현해서 toUpperCase()로 대문자화 했습니다. 더 좋은 방법 있으면 말씀해주세요 💀 - [x] `develop` 브랜치의 최신 코드를 `pull` 받았나요?
11e6588
to
e44fc17
Compare
EATSTEAK
approved these changes
Mar 6, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
1️⃣ 작업 내용 Summary
PASSU 행사 도중 발견된 문제들에 대한 이슈를 해결했습니다.
(author를 변경하면서 실수로 1a51fd2 커밋까지 포함이 됐습니다)
2️⃣ 추후 작업할 내용
3️⃣ 체크리스트
main
브랜치의 최신 코드를pull
받았나요?