Fix user-journey leaking css

This fixes a CSS syntax error that causes the CSS parser to soft-fail, which leads to the later CSS (custom styles) to not properly append the `#id` to them.
This commit is contained in:
Lishid 2022-09-22 12:48:23 -04:00 committed by GitHub
parent c93c7c75c9
commit 6309300eb6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -132,8 +132,6 @@ const getStyles = (options) =>
.actor-5 {
${options.actor5 ? `fill: ${options.actor5}` : ''};
}
}
`;
export default getStyles;