You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maybe try out the above linked approach @vebersol till this is patched.
Name one with a "-" and the other with a "_". It's a weak fix but might work for now. :/
I had the same issue as well. I think it has to do with fuzzyFindOne(partialFuzzyPath) matching filenames very lazily. If partials filename consists of multiple words delimited by dash or underscore and you call @partial('keyword'), and if one of the words is keyword, then partial will fetch that file.
I'm using partials as components and sometimes it has a prefix on it, per example:
Sometimes, it renders box_example_2 in place of box_example_1. It seems that it doesn't get the name after underscore.
I've tried to use "-" instead of "_" and got the same issue.
The text was updated successfully, but these errors were encountered: