-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(bsky): replies and quotes (#218)
feat: proxy service source code feat(bsky): support replying refactor: remove casing libs fix: crash on profile tab navigation fix(akkoma): updates inbox folder fix(akkoma): broken dimensions of media thumbs fix: casing function does not handle arrays fix: unable to add/remove to colleciton style: improved media thumbs in notifs chore: v1 notification pack fn chore(bsky): experiment with oauth chore(bsky): width/height can be null chore: add a settings button to edit my posts chore: preliminary quote support
- Loading branch information
Showing
113 changed files
with
2,612 additions
and
1,502 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import MyLists from '../../../../components/screens/profile/stack/MyLists'; | ||
import MyListsPresenter from '../../../../features/my-account/presenters/MyListsPresenter'; | ||
|
||
function BookmarkClassic() { | ||
return <MyLists />; | ||
return <MyListsPresenter />; | ||
} | ||
|
||
export default BookmarkClassic; |
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 |
---|---|---|
@@ -1,7 +1,3 @@ | ||
import MyAccountPresenter from '../../../features/my-account/presenters/MyAccountPresenter'; | ||
|
||
function Page() { | ||
return <MyAccountPresenter />; | ||
} | ||
|
||
export default Page; | ||
export default MyAccountPresenter; |
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 |
---|---|---|
@@ -1,8 +1,3 @@ | ||
import { memo } from 'react'; | ||
import MastodonServerSelect from '../../../../components/screens/profile/stack/onboard/stacks/MastodonServerSelection'; | ||
import MastodonServerSelect from '../../../../features/onboarding/presenters/MastoApiServerPresenter'; | ||
|
||
const AddMastodonStack = memo(function Foo() { | ||
return <MastodonServerSelect />; | ||
}); | ||
|
||
export default AddMastodonStack; | ||
export default MastodonServerSelect; |
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 |
---|---|---|
@@ -1,8 +1,3 @@ | ||
import { memo } from 'react'; | ||
import MisskeyServerSelection from '../../../../components/screens/profile/stack/onboard/stacks/MisskeyServerSelection'; | ||
import MiauthServerPresenter from '../../../../features/onboarding/presenters/MiauthServerPresenter'; | ||
|
||
const AddMisskeyStack = memo(function Foo() { | ||
return <MisskeyServerSelection />; | ||
}); | ||
|
||
export default AddMisskeyStack; | ||
export default MiauthServerPresenter; |
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,3 @@ | ||
import AtProtoLoginPresenter from '../../../../features/onboarding/features/atproto/presenters/AtProtoLoginPresenter'; | ||
|
||
export default AtProtoLoginPresenter; |
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 |
---|---|---|
@@ -1,7 +1,3 @@ | ||
import AppSettingsPage from '../../../../components/screens/profile/stack/AppSettingsPage'; | ||
|
||
function Page() { | ||
return <AppSettingsPage />; | ||
} | ||
|
||
export default Page; | ||
export default AppSettingsPage; |
Oops, something went wrong.