fix(ci): satisfy full lint gate
This commit is contained in:
parent
2d2419bcbf
commit
5312a137da
2 changed files with 3 additions and 3 deletions
|
|
@ -24,10 +24,10 @@ interface ProvisioningProviderRuntimeSettingsDialogProps {
|
||||||
readonly onProviderRuntimeChanged?: (providerId: CliProviderId) => void;
|
readonly onProviderRuntimeChanged?: (providerId: CliProviderId) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
type ProviderTerminalState = {
|
interface ProviderTerminalState {
|
||||||
providerId: CliProviderId;
|
providerId: CliProviderId;
|
||||||
action: 'login' | 'logout';
|
action: 'login' | 'logout';
|
||||||
};
|
}
|
||||||
|
|
||||||
export const ProvisioningProviderRuntimeSettingsDialog = ({
|
export const ProvisioningProviderRuntimeSettingsDialog = ({
|
||||||
openProviderId,
|
openProviderId,
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@ export function normalizeTeamMemberMcpScopes(
|
||||||
const out: Partial<Record<TeamMemberMcpScope, boolean>> = {};
|
const out: Partial<Record<TeamMemberMcpScope, boolean>> = {};
|
||||||
for (const scope of TEAM_MEMBER_MCP_SCOPES) {
|
for (const scope of TEAM_MEMBER_MCP_SCOPES) {
|
||||||
if (typeof input[scope] === 'boolean') {
|
if (typeof input[scope] === 'boolean') {
|
||||||
out[scope] = input[scope] as boolean;
|
out[scope] = input[scope];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue