Skip to content

Commit

Permalink
docs(examples): fix sandbox
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahdayan committed Nov 10, 2021
1 parent 24021eb commit b4697bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/github-notification-filters/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ function onTagsChange(tags: Array<Tag<NotificationFilter>>) {
function splitQuery(query: string) {
const [prefix, postfix] = query.split(':');

return [prefix, postfix] as const;
return [prefix, postfix];
}

function getAlltags(tags: Array<Tag<NotificationFilter>>, query: string) {
Expand Down

0 comments on commit b4697bf

Please sign in to comment.