Explorar el Código

Fixed a variable typo (#3727)

Salah Kanjo hace 1 año
padre
commit
e67addf653
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/alpinejs/src/magics/index.js

+ 1 - 1
packages/alpinejs/src/magics/index.js

@@ -16,5 +16,5 @@ warnMissingPluginMagic('Focus', 'focus', 'focus')
 warnMissingPluginMagic('Persist', 'persist', 'persist')
 
 function warnMissingPluginMagic(name, magicName, slug) {
-    magic(magicName, (el) => warn(`You can't use [$${directiveName}] without first installing the "${name}" plugin here: https://alpinejs.dev/plugins/${slug}`, el))
+    magic(magicName, (el) => warn(`You can't use [$${magicName}] without first installing the "${name}" plugin here: https://alpinejs.dev/plugins/${slug}`, el))
 }