@fy-/fws-vue 0.6.4 → 0.6.5

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.
@@ -106,13 +106,9 @@ export const useSeo = (seo: Ref<LazyHead>, initial: boolean = false) => {
106
106
 
107
107
  metaPairs.forEach(([seoKey, ...properties]) => {
108
108
  const seoValue = seo.value[seoKey as keyof LazyHead];
109
- console.log(
110
- `seoKey: ${seoKey}, properties: ${properties}, seoValue: ${seoValue}`,
111
- );
112
109
 
113
110
  if (seoValue !== undefined && seoValue !== null && seoValue !== "") {
114
111
  properties.forEach((property) => {
115
- console.log(`property: ${property}`);
116
112
  if (
117
113
  property === "description" ||
118
114
  property === "keywords" ||
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "0.6.4",
3
+ "version": "0.6.5",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {