Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
FredKSchott authored and astrobot-houston committed Aug 11, 2022
1 parent 42fd693 commit be64706
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/integrations/image/src/lib/get-image.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ export async function getImage(
if (!loader) {
// @ts-ignore
const { default: mod } = await import('virtual:image-loader').catch(() => {
throw new Error('[@astrojs/image] Builtin image loader not found. (Did you remember to add the integration to your Astro config?)');
throw new Error(
'[@astrojs/image] Builtin image loader not found. (Did you remember to add the integration to your Astro config?)'
);
});
loader = mod as ImageService;
globalThis.astroImage = globalThis.astroImage || {};
Expand Down

0 comments on commit be64706

Please sign in to comment.