Skip to content

Commit

Permalink
Merge pull request #17709 from mozilla/FXA-10443
Browse files Browse the repository at this point in the history
fix(pair): Fix check around isSystemCameraUrl
  • Loading branch information
LZoog authored Sep 26, 2024
2 parents b0e61a7 + 68aeb32 commit f334662
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class PairUnsupportedView extends FormView {
const isMobile = uap.isMobile();
// Assume the user is on non-Firefox desktop in this case.
const isDesktopNonFirefox = !isFirefox && !isMobile;
const hashParams = this.getHashParams(['channel_id, channel_key']);
const hashParams = this.getHashParams(['channel_id', 'channel_key']);
const isSystemCameraUrl =
hashParams.channel_id && hashParams.channel_key && isMobile;

Expand Down

0 comments on commit f334662

Please sign in to comment.