From fdea66065f96dc4a04e9b2050945f843dd5351d7 Mon Sep 17 00:00:00 2001 From: kyledoesdev Date: Wed, 20 Nov 2024 18:40:26 -0500 Subject: [PATCH] small fix --- resources/js/components/Share.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/js/components/Share.vue b/resources/js/components/Share.vue index 440eef9..f5f2700 100644 --- a/resources/js/components/Share.vue +++ b/resources/js/components/Share.vue @@ -11,8 +11,8 @@ .then(() => { this.flash('Success', 'Copied to clipboard!'); }) - .catch(err => { - chis.flash("Something went wrong.", 'Could not copy to your clipbaord, try copy & pasting the URL manually.', 'error'); + .catch(error => { + this.flash("Something went wrong.", 'Could not copy to your clipbaord, try copy & pasting the URL manually.', 'error'); }); } }