fix handleRemoveUrl for funnel report

This commit is contained in:
Francis Cao 2024-04-02 09:19:45 -07:00
parent 6767f95c0d
commit 845968804b
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ export function FunnelParameters() {
const handleRemoveUrl = (url: string) => {
const urls = [...parameters.urls];
updateReport({ parameters: { urls: urls.filter(n => n.url !== url) } });
updateReport({ parameters: { urls: urls.filter(n => n !== url) } });
};
const AddUrlButton = () => {