Skip to content

Commit

Permalink
Merge branch 'hotfix/v3.0.1' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexeySafronov committed Dec 12, 2024
2 parents f1ca988 + f9aab0f commit 3cbb81d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/client/src/pages/Sdk/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,10 @@ const Sdk = ({
getFilesSettings();
}, []);

const { mode, selectorType } = useParams();
const { mode } = useParams();
const selectorType = new URLSearchParams(window.location.search).get(
"selectorType",
);

const handleMessage = async (e) => {
const eventData = typeof e.data === "string" ? JSON.parse(e.data) : e.data;
Expand Down

0 comments on commit 3cbb81d

Please sign in to comment.