diff --git a/examples/github-notification-filters/app.tsx b/examples/github-notification-filters/app.tsx index 6b2dc560c..cabf9dd9c 100644 --- a/examples/github-notification-filters/app.tsx +++ b/examples/github-notification-filters/app.tsx @@ -215,7 +215,7 @@ function onTagsChange(tags: Array>) { function splitQuery(query: string) { const [prefix, postfix] = query.split(':'); - return [prefix, postfix] as const; + return [prefix, postfix]; } function getAlltags(tags: Array>, query: string) {