Commit 9f1afadb authored by isstuev's avatar isstuev

fix

parent 3ed37a15
...@@ -54,8 +54,10 @@ const SearchResultsPageContent = () => { ...@@ -54,8 +54,10 @@ const SearchResultsPageContent = () => {
return; return;
} }
case 'user_operation': { case 'user_operation': {
router.replace({ pathname: '/op/[hash]', query: { hash: redirectCheckQuery.data.parameter } }); if (config.features.userOps.isEnabled) {
return; router.replace({ pathname: '/op/[hash]', query: { hash: redirectCheckQuery.data.parameter } });
return;
}
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment