Skip to content

Commit

Permalink
style: Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Josmithr committed Jan 31, 2025
1 parent d4f056d commit d8f0033
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/runtime/container-runtime/src/containerRuntime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -806,9 +806,9 @@ async function createSummarizer(loader: ILoader, url: string): Promise<ISummariz
// ! This check will need to stay until LTS of loader moves past 2.0.0-internal.7.0.0
if (resolvedContainer.getEntryPoint === undefined) {
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call, @typescript-eslint/no-explicit-any
const response = await (resolvedContainer as any).request({
const response = (await (resolvedContainer as any).request({
url: `/${summarizerRequestUrl}`,
}) as IResponse;
})) as IResponse;
if (response.status !== 200 || response.mimeType !== "fluid/object") {
throw responseToException(response, request);
}
Expand Down

0 comments on commit d8f0033

Please sign in to comment.