Skip to content

Commit

Permalink
Fix missing transactionType
Browse files Browse the repository at this point in the history
  • Loading branch information
sorenlouv committed Sep 15, 2020
1 parent 361fa1a commit 9caf99a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function TransactionErrorRateAlertTrigger(props: Props) {
const { urlParams } = useUrlParams();
const transactionTypes = useServiceTransactionTypes(urlParams);
const { serviceName } = useParams<{ serviceName?: string }>();
const { start, end } = urlParams;
const { start, end, transactionType } = urlParams;
const { environmentOptions } = useEnvironments({ serviceName, start, end });

if (!transactionTypes.length || !serviceName) {
Expand Down

0 comments on commit 9caf99a

Please sign in to comment.