diff --git a/app/controllers/tell_managers_controller.rb b/app/controllers/tell_managers_controller.rb index ab322ae..58838e0 100644 --- a/app/controllers/tell_managers_controller.rb +++ b/app/controllers/tell_managers_controller.rb @@ -2,7 +2,9 @@ class TellManagersController < ApplicationController before_action :validate_cloudflare_turnstile, only: %i[create] def new - @coffee_shop = CoffeeShop.find_by(slug: params[:coffee_shop_id]) + @coffee_shop = + CoffeeShop.find_by(slug: params[:coffee_shop_id]) || + CoffeeShop.find(params[:coffee_shop_id]) @feedback = Feedback.new end