mirror of
https://ghproxy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-07-21 12:16:59 +08:00
7 lines
292 B
JavaScript
7 lines
292 B
JavaScript
import { BLOCKS, MANAGE_URL_PARAM } from '@ea11y-apps/scanner/constants';
|
|
|
|
export const getInitialTab = () => {
|
|
const params = new URLSearchParams(window.location.search);
|
|
const isInitManage = params.get(MANAGE_URL_PARAM) === '1';
|
|
return isInitManage ? BLOCKS.management : BLOCKS.main;
|
|
};
|