Skip to content

Commit

Permalink
[FIX][QA] 앱 아이디 수정, 헤더 텍스트 수정 (#260)
Browse files Browse the repository at this point in the history
- 앱 아이디 수정, 헤더 텍스트 수정
  • Loading branch information
ysh4296 authored Oct 29, 2023
1 parent 937a0fa commit f844d8f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 13 deletions.
6 changes: 3 additions & 3 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.akdlsz21.keewe",
"versionCode": 18,
"package": "com.CCC.keewe",
"versionCode": 1,
"intentFilters": [
{
"action": "VIEW",
Expand All @@ -56,7 +56,7 @@
},
"extra": {
"eas": {
"projectId": "662b6040-56c8-42ea-9623-ec66e4cfd04f"
"projectId": "05f9153d-ab7a-4208-a465-60a60c8c4ade"
}
},
"plugins": [
Expand Down
18 changes: 10 additions & 8 deletions src/components/texts/HeaderText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,16 @@ const HeaderText = ({ header, subTitle, interest }: HeaderTextProps) => {
<View>
<View style={styles.mainTitle}>
<Text style={styles.header}>{header}</Text>
<View
style={{
...styles.profile,
backgroundColor: theme.colors.brand.surface.container1,
}}
>
<SvgXml xml={INTEREST_ICONS[interest ?? ''] ?? INTEREST_ICONS['기본']} />
</View>
{interest && (
<View
style={{
...styles.profile,
backgroundColor: theme.colors.brand.surface.container1,
}}
>
<SvgXml xml={INTEREST_ICONS[interest ?? ''] ?? INTEREST_ICONS['기본']} />
</View>
)}
</View>
{subTitle && <Text style={styles.subTitle}>{subTitle}</Text>}
</View>
Expand Down
6 changes: 4 additions & 2 deletions src/screens/Main/challenge/ChallengeParticipationScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,12 @@ const ChallengeParticipationScreen = ({ route }) => {
<View
style={{
flexDirection: 'row',
justifyContent: 'space-evenly',
justifyContent: 'center',
gap: 8,
bottom: 0,
backgroundColor: theme.colors.graphic.white,
paddingVertical: 10,
paddingVertical: 12,
paddingHorizontal: 16,
}}
>
<ConditionalButton
Expand Down

0 comments on commit f844d8f

Please sign in to comment.