Skip to content

Commit

Permalink
fix typo in urlController
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanxiong committed Aug 16, 2024
1 parent 4eb9ad1 commit 5c350fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flake-guard-app/src/server/controllers/urlController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const urlController: UrlController = {

buildCustomUrl: (req: Request, res: Response, next: NextFunction) => {
try {
const tempUrl: string = `https://flakeguard.com/${res.locals.randomString}`;
const tempUrl: string = `https://flakeguard.com/npm/${res.locals.randomString}`;
res.locals.tempUrl = tempUrl;
next();
} catch (error) {
Expand Down

0 comments on commit 5c350fe

Please sign in to comment.