We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92ec81e commit be55d60Copy full SHA for be55d60
1 file changed
packages/theme-check-common/src/checks/liquid-free-settings/index.ts
@@ -74,8 +74,8 @@ function isLiteralNode(node: JSONNode): node is LiteralNode {
74
}
75
76
function isLiquidType(ancestors: JSONNode[]): boolean {
77
- const parentJsonNode = ancestors.at(-1)
78
-
+ const parentJsonNode = ancestors.at(-1);
+
79
if (!parentJsonNode || parentJsonNode.type !== 'Object') {
80
return false;
81
0 commit comments