fix(filter-types): standardize SLOW_PAGE_LOAD enum value

Change SLOW_PAGE_LOAD enum string value from camelCase 'slow_pageLoad'
to snake_case 'slow_page_load' to maintain consistent naming convention
across all enum values.

Signed-off-by: Shekar Siri <sshekarsiri@gmail.com>
This commit is contained in:
Shekar Siri 2025-03-05 12:46:39 +01:00
parent f168f90f10
commit ce2a65f276

View file

@ -165,7 +165,7 @@ export enum IssueType {
MEMORY = 'memory',
CPU = 'cpu',
SLOW_RESOURCE = 'slow_resource',
SLOW_PAGE_LOAD = 'slow_pageLoad',
SLOW_PAGE_LOAD = 'slow_page_load',
CRASH = 'crash',
CUSTOM = 'custom',
JS_EXCEPTION = 'js_exception',