- πΊπΈUnited States tr Cascadia
Twig\Error\SyntaxError: Unknown "spaceless" tag. in Twig\Parser->subparse() (line 17 of themes/custom/uswds_base_3x_nicic/templates/modules/flag/flag--bookmark.html.twig).
This error is saying there's a problem with the custom theme you are using on your site - namely the filethemes/custom/uswds_base_3x_nicic/templates/modules/flag/flag--bookmark.html.twig
It is important to note that this file is NOT provided by the Flag module, so there is nothing we can do here in the Flag module to fix the problem for you. Evidently the custom theme was developed with an older version of Twig where the 'spaceless' tag was still available. That tag was deprecated and is no longer available in current versions of Drupal core.
The fix for your custom theme is probably as simple as replacing:
{% spaceless %}
with:
{% apply spaceless %}
in that theme file. - Status changed to Fixed
4 months ago 9:44am 25 August 2024 Automatically closed - issue fixed for 2 weeks with no activity.