Skip to content

Commit

Permalink
lie about types
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Feb 11, 2025
1 parent df27968 commit bd3f613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@glimmer/runtime/lib/compiled/opcodes/content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function toContentType(value: unknown) {
hasInternalComponentManager(value as object)
) {
return ContentType.Component;
} else if (isCurriedType(value, CURRIED_HELPER) || hasInternalHelperManager(value)) {
} else if (isCurriedType(value, CURRIED_HELPER) || hasInternalHelperManager(value as object)) {
return ContentType.Helper;
} else if (isSafeString(value)) {
return ContentType.SafeString;
Expand Down

0 comments on commit bd3f613

Please sign in to comment.