Skip to content

Commit

Permalink
chore: fix some comments (#5152)
Browse files Browse the repository at this point in the history
Signed-off-by: hidewrong <[email protected]>
  • Loading branch information
hidewrong authored Jan 14, 2025
1 parent 75b49c8 commit 44adfef
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/ceramic/esbuild.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ esbuild
.build({
bundle: true,
entryPoints: ['./src/ceramic-client.ts'],
// metafile: true, // uncomment to analyize build file contents
// metafile: true, // uncomment to analyze build file contents
outdir: './dist',
platform: 'node',
sourcemap: true,
Expand Down
2 changes: 1 addition & 1 deletion apps/cron/esbuild.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ esbuild
.build({
bundle: true,
entryPoints: ['./src/cron.ts'],
// metafile: true, // uncomment to analyize build file contents
// metafile: true, // uncomment to analyze build file contents
outdir: './dist',
tsconfig: './tsconfig.json',
// packages: 'external',
Expand Down
2 changes: 1 addition & 1 deletion apps/websockets/esbuild.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ esbuild
.build({
bundle: true,
entryPoints: ['./src/initWebsockets.ts'],
// metafile: true, // uncomment to analyize build file contents
// metafile: true, // uncomment to analyze build file contents
outdir: './dist',
tsconfig: './tsconfig.json',
packages: 'external',
Expand Down
2 changes: 1 addition & 1 deletion components/common/form/InputGeneratorText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export default function InputGeneratorText({ onChange, title = 'Options', minimu
{!hasEnoughOptions && (
<Grid item>
<Alert severity='info'>
Please at at least {minimumOptions} non empty option{minimumOptions !== 1 ? 's' : ''}
Please at least {minimumOptions} non empty option{minimumOptions !== 1 ? 's' : ''}
</Alert>
</Grid>
)}
Expand Down
2 changes: 1 addition & 1 deletion pages/api/v1/webhooks/stripe/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ export async function stripePayment(req: NextApiRequest, res: NextApiResponse):
}
});

log.info(`Loop checkout url was succesfully added in stripe metadata`, { spaceId, priceId, subscriptionId });
log.info(`Loop checkout url was successfully added in stripe metadata`, { spaceId, priceId, subscriptionId });
}

break;
Expand Down

0 comments on commit 44adfef

Please sign in to comment.