Skip to content

Commit

Permalink
fix(frame-manager): fixed template string error
Browse files Browse the repository at this point in the history
fixed template string error

COMUI-1201
  • Loading branch information
daragh-king-genesys committed Sep 21, 2022
1 parent 727f90e commit a77931b
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions packages/iframe-coordinator/src/FrameManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,7 @@ import {
PartialMsg
} from './messages/LabeledMsg';

const IFRAME_STYLE = `
frame-router iframe {
width: 100%;
height: 100%;
}
`;
const IFRAME_STYLE = 'frame-router iframe { width: 100%; height: 100%; }';

/** @internal default iframe sandbox attributes */
const DEFAULT_SANDBOX = [
Expand Down

0 comments on commit a77931b

Please sign in to comment.