Skip to content

Commit 654fe6a

Browse files
fix: typo in regex range
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
1 parent f0a4b79 commit 654fe6a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/apps/src/server/compiler/AppPackageParser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { RequiredApiVersionError } from '../errors';
1111
import type { IParseAppPackageResult } from './IParseAppPackageResult';
1212

1313
export class AppPackageParser {
14-
public static uuid4Regex = /^[0-9a-fA-f]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$/;
14+
public static uuid4Regex = /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$/;
1515

1616
private allowedIconExts: Array<string> = ['.png', '.jpg', '.jpeg', '.gif'];
1717

0 commit comments

Comments
 (0)