fix(ci): satisfy full lint gate

This commit is contained in:
777genius 2026-05-20 00:03:28 +03:00
parent 2d2419bcbf
commit 5312a137da
2 changed files with 3 additions and 3 deletions

View file

@ -24,10 +24,10 @@ interface ProvisioningProviderRuntimeSettingsDialogProps {
readonly onProviderRuntimeChanged?: (providerId: CliProviderId) => void;
}
type ProviderTerminalState = {
interface ProviderTerminalState {
providerId: CliProviderId;
action: 'login' | 'logout';
};
}
export const ProvisioningProviderRuntimeSettingsDialog = ({
openProviderId,

View file

@ -40,7 +40,7 @@ export function normalizeTeamMemberMcpScopes(
const out: Partial<Record<TeamMemberMcpScope, boolean>> = {};
for (const scope of TEAM_MEMBER_MCP_SCOPES) {
if (typeof input[scope] === 'boolean') {
out[scope] = input[scope] as boolean;
out[scope] = input[scope];
}
}