Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DONOT MERGE]: Test external contributor pr 33171 #33352

Closed
wants to merge 10 commits into from
2 changes: 1 addition & 1 deletion app/client/src/entities/Action/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ export function isSaaSAction(action: Action): action is SaaSAction {
return action.pluginType === PluginType.SAAS;
}

export function isAIAction(action: Action): action is SaaSAction {
export function isAIAction(action: Action): action is AIAction {
return action.pluginType === PluginType.AI;
}

Expand Down