Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewWladis committed Apr 20, 2024
1 parent dd99ad1 commit d73902e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions BraceletPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ function BraceletPage({ setScreen, theme }) {
'i': '#388bc9',
'j': '#5f38c9',
'k': '#eeb6f2',
'l': '#1c1c1c',
'm': '#cccccc',
'n': '#f2f2f2'
'l': '#ed5fb2',
'm': '#1c1c1c',
'n': '#cccccc'
}

const fonts = {
Expand Down Expand Up @@ -158,7 +158,6 @@ function BraceletPage({ setScreen, theme }) {
<View style={styles.braceletContainer}>
<View style={styles.bracelet}>
{beads.map((bead, index) => {
console.log(bead)
return (
bead.charAt(1) !== '%' ? (
<View style={[styles.bead, { backgroundColor: colors[bead.charAt(0)] }]}>
Expand Down Expand Up @@ -195,6 +194,8 @@ function BraceletPage({ setScreen, theme }) {
style={styles.braceletInput}
maxLength={1}
onChangeText={text => setBeadText(text)}
blurOnSubmit={true}

/>
{(
beadText.trim() !== '' ? (
Expand Down
2 changes: 1 addition & 1 deletion app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"expo": {
"name": "Swiftie Swipe",
"slug": "taylors-version",
"version": "1.1.1",
"version": "1.1.2",
"orientation": "portrait",
"icon": "./assets/ts.png",
"userInterfaceStyle": "light",
Expand Down

0 comments on commit d73902e

Please sign in to comment.