fix(core): add switch button to switch-to-edgeless notification (#8300)

fix AF-1359
This commit is contained in:
pengx17
2024-09-19 06:37:21 +00:00
parent a88e82a534
commit f6cd029c18
2 changed files with 21 additions and 12 deletions
@@ -1,4 +1,3 @@
import { notify } from '@affine/component';
import { AIProvider } from '@affine/core/blocksuite/presets/ai';
import { toggleGeneralAIOnboarding } from '@affine/core/components/affine/ai-onboarding/apis';
import { authAtom, openSettingModalAtom } from '@affine/core/components/atoms';
@@ -7,7 +6,6 @@ import {
type getCopilotHistoriesQuery,
type RequestOptions,
} from '@affine/graphql';
import { Trans } from '@affine/i18n';
import { track } from '@affine/track';
import { UnauthorizedError } from '@blocksuite/blocks';
import { assertExists } from '@blocksuite/global/utils';
@@ -480,13 +478,5 @@ Could you make a new website based on these notes and send back just the html fi
}));
});
AIProvider.slots.requestRunInEdgeless.on(() => {
notify.warning({
title: (
<Trans i18nKey="com.affine.ai.action.edgeless-only.dialog-title" />
),
});
});
setupTracker();
}