Skip to content

Commit

Permalink
review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
nanddeepn committed Nov 25, 2024
1 parent 4082580 commit b39133d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/m365/spe/commands/container/container-get.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Logger } from '../../../../cli/Logger.js';
import GraphCommand from '../../../base/GraphCommand.js';
import commands from '../../commands.js';
import request, { CliRequestOptions } from '../../../../request.js';
import { ContainerTypeProperties } from '../../ContainerTypeProperties.js';
import { ContainerProperties } from '../../ContainerProperties.js';

interface CommandArgs {
options: Options;
Expand Down Expand Up @@ -53,7 +53,7 @@ class SpeContainerGetCommand extends GraphCommand {
};

try {
const res = await request.get<ContainerTypeProperties>(requestOptions);
const res = await request.get<ContainerProperties>(requestOptions);
await logger.log(res);
}
catch (err: any) {
Expand Down

0 comments on commit b39133d

Please sign in to comment.