JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "use-appearance-editor-mode.ts"

Full Path: /home/markqprx/iniasli.pro/client/admin/appearance/commands/use-appearance-editor-mode.ts
File size: 279 bytes
MIME-type: text/plain
Charset: utf-8

import {isSsr} from '@common/utils/dom/is-ssr';

export function useAppearanceEditorMode() {
  return {
    isAppearanceEditorActive:
      !isSsr() &&
      ((window.frameElement as HTMLIFrameElement) || undefined)?.src.includes(
        'appearanceEditor=true'
      ),
  };
}