Skip to content
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 copilot bugs #48517

Merged
merged 22 commits into from
Sep 18, 2024
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift click to select a range
9221a03
fix overflow name
rushatgabhane Sep 4, 2024
84d33b4
Merge branch 'main' of github.com:rushatgabhane/exfy into fix-copilot…
rushatgabhane Sep 8, 2024
9c22426
preserve isloading
rushatgabhane Sep 8, 2024
7f07f36
show loading screen for subscription page
rushatgabhane Sep 8, 2024
f550dff
disable feedback when cannot switch account
rushatgabhane Sep 8, 2024
2b746dc
fix avatar position when upload error
rushatgabhane Sep 8, 2024
ad3bf76
show avatar skeleton when loading
rushatgabhane Sep 8, 2024
8d27ce0
rm IS_LOADING_REPORT_DATA
rushatgabhane Sep 8, 2024
6ee983f
reset error when source / avatar id changes
rushatgabhane Sep 8, 2024
c82df42
Merge branch 'main' into fix-copilot-bugs
rushatgabhane Sep 16, 2024
4033c2a
Merge branch 'main' of github.com:rushatgabhane/exfy into fix-copilot…
rushatgabhane Sep 16, 2024
0618191
add center style avatar
rushatgabhane Sep 16, 2024
ca0e5d4
fix #48965
rushatgabhane Sep 16, 2024
b1365f4
add fallback avatar. fix #48966
rushatgabhane Sep 16, 2024
ae039e1
fix #48967 show no results found
rushatgabhane Sep 16, 2024
412544c
fix #48972
rushatgabhane Sep 16, 2024
cdbf52f
fix center avatar on center
rushatgabhane Sep 16, 2024
186dfde
Update src/pages/settings/Security/AddDelegate/SelectDelegateRolePage…
rushatgabhane Sep 16, 2024
81e49dd
undo
rushatgabhane Sep 16, 2024
ef39885
migrate to useOnyx
rushatgabhane Sep 16, 2024
ef72f6e
Update src/pages/settings/Security/AddDelegate/SelectDelegateRolePage…
rushatgabhane Sep 16, 2024
747372d
fix lint
rushatgabhane Sep 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
undo
  • Loading branch information
rushatgabhane committed Sep 16, 2024
commit 81e49dd5f2ca02301c2ab729dd108fbc4088284a
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 41,7 @@ function SelectDelegateRolePage({route}: SelectDelegateRolePageProps) {
<SelectionList
isAlternateTextMultilineSupported
alternateTextNumberOfLines={4}
initiallyFocusedOptionKey={roleOptions.find((role) => role.value === route.params.role)?.value}
initiallyFocusedOptionKey={route.params.role}
rushatgabhane marked this conversation as resolved.
Show resolved Hide resolved
rushatgabhane marked this conversation as resolved.
Show resolved Hide resolved
headerContent={
<Text style={[styles.ph5, styles.pb5, styles.pt3]}>
<>
Expand Down
Loading