payload-plugin-newsletter 0.12.0 → 0.12.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.12.1] - 2025-07-20
2
+
3
+ ### Fixed
4
+ - Resolved ESLint errors in email preview components
5
+ - Removed unused imports and variables
6
+ - Fixed console.info statements in template loader
7
+
1
8
  ## [0.12.0] - 2025-07-20
2
9
 
3
10
  ### Added
@@ -1824,10 +1824,8 @@ var TemplateLoader = class {
1824
1824
  ).catch(() => null);
1825
1825
  if (module2) {
1826
1826
  this.customTemplate = module2.default || module2.BroadcastTemplate;
1827
- console.info("Loaded custom broadcast template");
1828
1827
  }
1829
- } catch (error) {
1830
- console.info("Using default broadcast template");
1828
+ } catch {
1831
1829
  }
1832
1830
  }
1833
1831
  // Reset for testing