Merge branch 'develop' into feature/subscription-info-in-preferences
This commit is contained in:
@@ -1,11 +1,15 @@
|
||||
import { Sync, SubscriptionWrapper } from '@/preferences/panes/account';
|
||||
import { Sync, SubscriptionWrapper, Credentials } from '@/preferences/panes/account';
|
||||
import { PreferencesPane } from '@/preferences/components';
|
||||
import { observer } from 'mobx-react-lite';
|
||||
import { WebApplication } from '@/ui_models/application';
|
||||
|
||||
export const AccountPreferences = observer(({application}: {application: WebApplication}) => {
|
||||
type Props = {
|
||||
application: WebApplication;
|
||||
}
|
||||
export const AccountPreferences = observer(({application}: Props) => {
|
||||
return (
|
||||
<PreferencesPane>
|
||||
<Credentials application={application} />
|
||||
<Sync application={application} />
|
||||
<SubscriptionWrapper application={application} />
|
||||
</PreferencesPane>
|
||||
|
||||
Reference in New Issue
Block a user