mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-06 08:50:50 +08:00
fix(electron): linux login issues (#5821)
Looks like there are some issues using `@reforged/maker-appimage`: - deep link not working properly (cannot login) - cannot be installed via AppImageLauncher, which is required to enable deep link on linux I forked saleae/electron-forge-maker-appimage into https://github.com/toeverything/electron-forge-maker-appimage to fix these issues See changes: https://github.com/saleae/electron-forge-maker-appimage/compare/master...toeverything:electron-forge-maker-appimage:master?w=1 To enable login on Linux, the app must be installed via AppImageLauncher.  fix https://github.com/toeverything/AFFiNE/issues/4978 fix https://github.com/toeverything/AFFiNE/issues/4466
This commit is contained in:
@@ -34,6 +34,14 @@ export interface Scalars {
|
||||
Upload: { input: File; output: File };
|
||||
}
|
||||
|
||||
export interface CreateCheckoutSessionInput {
|
||||
coupon: InputMaybe<Scalars['String']['input']>;
|
||||
idempotencyKey: Scalars['String']['input'];
|
||||
plan: InputMaybe<SubscriptionPlan>;
|
||||
recurring: InputMaybe<SubscriptionRecurring>;
|
||||
successCallbackLink: InputMaybe<Scalars['String']['input']>;
|
||||
}
|
||||
|
||||
/** The type of workspace feature */
|
||||
export enum FeatureType {
|
||||
Copilot = 'Copilot',
|
||||
|
||||
Reference in New Issue
Block a user