refactor(core): Remove Onboarding call prompts (no-changelog) (#9933)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-07-04 13:51:26 +02:00
committed by GitHub
parent 31163e1da5
commit 9e92a5774e
16 changed files with 3 additions and 320 deletions

View File

@@ -1332,7 +1332,6 @@ export interface ISettingsState {
mfa: {
enabled: boolean;
};
onboardingCallPromptEnabled: boolean;
saveDataErrorExecution: WorkflowSettings.SaveDataExecution;
saveDataSuccessExecution: WorkflowSettings.SaveDataExecution;
saveManualExecutions: boolean;
@@ -1428,16 +1427,6 @@ export interface IInviteResponse {
error?: string;
}
export interface IOnboardingCallPromptResponse {
nextPrompt: IOnboardingCallPrompt;
}
export interface IOnboardingCallPrompt {
title: string;
description: string;
toast_sequence_number: number;
}
export interface ITab {
value: string | number;
label?: string;