From 1787bfc2020ec2e121555df94641eb2f45230ccc Mon Sep 17 00:00:00 2001
From: Matt Almeida <matt7@hey.com>
Date: Sat, 28 Oct 2023 10:36:59 -0400
Subject: [PATCH] Remove nonexistent action from routes.rb

---
 config/routes.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/routes.rb b/config/routes.rb
index b2d507a8..3d050d55 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -7,7 +7,7 @@
 
   get "sign_in", to: "users/authentications#new", as: :sign_in
   scope :my, module: :users do
-    resource :authentication, only: [:create, :show]
+    resource :authentication, only: :create
     resources :sessions, only: [:new, :destroy]
   end