-
Notifications
You must be signed in to change notification settings - Fork 3
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
[Feat/#91] 캐러셀 라우팅 및 자잘한 변경 #101
Merged
Merged
Changes from 27 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
62b9744
merge develop
namdaeun 43954d9
fix: import 경로 수정
namdaeun 1761c62
feat: 받아온 이미지 border-radius 값 부여
namdaeun d0d6dee
fix: 여러 줄일 때 말줄임표 처리
namdaeun 3e35a80
feat: 글모임 순서 보장
namdaeun e731777
fix: 이미지 fit 속성 변경
namdaeun 29fd7f4
fix: svg 교체
namdaeun d34c166
fix: 변수명 변경
namdaeun a37a000
chore: 불필요한 콘솔 제거 및 임포트 경로 수정
namdaeun 0be8cab
feat: 작미 소개 더미에서 불러오기
namdaeun ea97849
chore: 임포트 수정
namdaeun b8ec9de
feat: 버튼에 groupId 넘겨주기
namdaeun 15d198b
feat: groupId 넘겨서 navigate
namdaeun e5d5872
feat: 인터페이스 새롭게 지정
namdaeun 1d89427
fix: 버튼 누르면 groupId로 이동하도록
namdaeun 12f3d1c
feat: api 연결 코드 타입 지정
namdaeun 0b96ca1
fix: 인터페이스 타입 파일 제거
namdaeun edb50a9
chore: 임포트 수정
namdaeun 53cf64b
fix: 인터페이스 타입 수정
namdaeun 17dc53a
merge develop
namdaeun 385b911
fix: 인터페이스 타입 에러 해결
namdaeun cde5d7e
chore: 인터페이스 이름 변경
namdaeun 0613407
fix: 오늘의 글감 width 조정
namdaeun 537c111
feat: 로그인과 로그아웃 라우팅
namdaeun 5254d16
chore: 경로 수정
namdaeun 3012f62
fix: 인터페이스명 변경
namdaeun df2ee88
fix: 로그아웃 함수 호출 수정
namdaeun b2f29ca
fix: 헤더 네이밍 변경
namdaeun File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
interface introductionPropTypes { | ||
subText: string; | ||
hookText: string; | ||
greetingText: string; | ||
discriptionText: string; | ||
} | ||
|
||
export const INTRODUCTION_DATA: introductionPropTypes[] = [ | ||
{ | ||
subText: '메이커들의 글 모임에서 확인해 보세요', | ||
hookText: '마일의 첫 번째 에피소드', | ||
greetingText: '우리가 글쓰기 모임에 주목한 이유', | ||
discriptionText: | ||
'“체취가 느껴지는 글은 오랜만에 읽어보는 것 같아. 솔직담백해서 좋다!” 내가 처음으로 올린 블로그 글에 친구가 달아준 댓글이었다. 사실 글쓰기에 중요한 건, ‘잘’ 쓰는 것이 아니라 그냥 내 마음을 담아 쓰는 것이라는 걸 알게 됐었다. 그리고 그렇게 마음을 담은 글...', | ||
}, | ||
]; |
This file was deleted.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[P3]
헤더네이밍이 unAuthorizationHeader 면 좋을 것 같아요
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
넵 수정하겠습니다!