Skip to content

Commit

Permalink
Merge branch 'main' into bugfix/context-username-ellipsis
Browse files Browse the repository at this point in the history
  • Loading branch information
MetaflameDragon authored Oct 9, 2024
2 parents 3cfe268 + da28c56 commit 0bd9f0c
Show file tree
Hide file tree
Showing 28 changed files with 29,194 additions and 26,100 deletions.
3 changes: 1 addition & 2 deletions __e2e__/flows/curate-lists.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,7 @@ appId: xyz.blueskyweb.app
- tapOn:
label: "Adds and removes users on curatelists from the profile"
id: "bottomBarSearchBtn"
- tapOn:
id: "searchTextInput"
- tapOn: "Search"
- inputText: "bob"
- tapOn:
id: "searchAutoCompleteResult-bob.test"
Expand Down
4 changes: 0 additions & 4 deletions __e2e__/flows/feed-reorder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@ appId: xyz.blueskyweb.app
id: "viewHeaderDrawerBtn"
- tapOn:
id: "profileCardButton"
- swipe:
from:
id: "profilePager-selector"
direction: LEFT
- tapOn:
id: "profilePager-selector-4"
- tapOn: "alice-favs"
Expand Down
4 changes: 0 additions & 4 deletions __e2e__/flows/home-screen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ appId: xyz.blueskyweb.app
- tapOn:
label: "Feeds button disappears after pinning a feed"
id: "bottomBarProfileBtn"
- swipe:
from:
id: "profilePager-selector"
direction: LEFT
- tapOn:
id: "profilePager-selector-4"
- tapOn: "alice-favs"
Expand Down
15 changes: 0 additions & 15 deletions __e2e__/flows/profile-screen-edit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,6 @@ appId: xyz.blueskyweb.app
- tapOn:
id: "bottomBarProfileBtn"

# Can see feeds
- swipe:
from:
id: "profilePager-selector"
direction: LEFT
- tapOn:
id: "profilePager-selector-4"
- assertVisible: "alice-favs"
- swipe:
from:
id: "profilePager-selector"
direction: RIGHT
- tapOn:
id: "profilePager-selector-0"

# Open and close edit profile modal
- tapOn:
id: "profileHeaderEditProfileButton"
Expand Down
3 changes: 1 addition & 2 deletions __e2e__/flows/profile-screen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ appId: xyz.blueskyweb.app
id: "bottomBarSearchBtn"
- tapOn:
id: "bottomBarSearchBtn"
- tapOn:
id: "searchTextInput"
- tapOn: "Search"
- inputText: "b"
- tapOn:
id: "searchAutoCompleteResult-bob.test"
Expand Down
3 changes: 1 addition & 2 deletions __e2e__/flows/search-screen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ appId: xyz.blueskyweb.app
# Navigate to another user profile via autocomplete
- tapOn:
id: "bottomBarSearchBtn"
- tapOn:
id: "searchTextInput"
- tapOn: "Search"
- inputText: "b"
- tapOn:
id: "searchAutoCompleteResult-bob.test"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@
"zod": "^3.20.2"
},
"devDependencies": {
"@atproto/dev-env": "^0.3.39",
"@atproto/dev-env": "^0.3.55",
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
Expand Down
4 changes: 3 additions & 1 deletion src/components/moderation/LabelsOnMeDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {useLabelInfo} from '#/lib/moderation/useLabelInfo'
import {makeProfileLink} from '#/lib/routes/links'
import {sanitizeHandle} from '#/lib/strings/handles'
import {logger} from '#/logger'
import {isAndroid} from '#/platform/detection'
import {useAgent, useSession} from '#/state/session'
import * as Toast from '#/view/com/util/Toast'
import {atoms as a, useBreakpoints, useTheme} from '#/alf'
Expand Down Expand Up @@ -237,7 +238,7 @@ function AppealForm({

return (
<>
<View style={{flexWrap: 'wrap', flexDirection: 'row'}}>
<View>
<Text style={[a.text_2xl, a.font_bold, a.pb_xs, a.leading_tight]}>
<Trans>Appeal "{strings.name}" label</Trans>
</Text>
Expand Down Expand Up @@ -300,6 +301,7 @@ function AppealForm({
{isPending && <ButtonIcon icon={Loader} />}
</Button>
</View>
{isAndroid && <View style={{height: 300}} />}
</>
)
}
Loading

0 comments on commit 0bd9f0c

Please sign in to comment.