Skip to content

Commit db7a0b7

Browse files
committed
Merge branch 'dev' into main
2 parents 2903fd8 + 7d478dd commit db7a0b7

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ git clone https://github.com/DeepNotesApp/DeepNotes && cd DeepNotes && cp templa
2929
- `pnpm run dev:android` to start the Android app (requires Android Studio).
3030
- `pnpm run dev:ios` to start the iOS app (requires Xcode).
3131

32+
(If you use SPA or SSR, you must access the app through `http://localhost:60379` by default. Other URLs won't work. You can configure the host and ports in the `.env` file.)
33+
3234
## Special thanks to these libraries for making DeepNotes possible:
3335

3436
- [Vue.js](https://vuejs.org/): Reactivity, component system, and more

apps/client/src/pages/home/Account/AccountItems.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
</q-item>
1212

1313
<q-item
14+
v-if="!($q.platform.is.capacitor && $q.platform.is.ios)"
1415
clickable
1516
:to="{ name: 'account/billing' }"
1617
style="padding: 16px 20px; font-size: 16px"

apps/client/src/pages/home/Account/Billing/Billing.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,7 @@ onMounted(async () => {
5050
5151
async function createPortalSession() {
5252
const { portalSessionUrl } =
53-
await trpcClient.users.account.stripe.createPortalSession.mutate({
54-
returnUrl: location.href,
55-
});
53+
await trpcClient.users.account.stripe.createPortalSession.mutate();
5654
5755
location.href = portalSessionUrl;
5856
}

0 commit comments

Comments
 (0)