From 50fe104ee7e7077cfdbe3d394876e2dffbfdfccd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mladen=20Ili=C4=87?= Date: Thu, 22 Aug 2019 18:51:05 +0200 Subject: [PATCH] Fix typo (#3789) Fix a typo in flash message --- app/controllers/internal/organization_memberships_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/internal/organization_memberships_controller.rb b/app/controllers/internal/organization_memberships_controller.rb index 9a5e75428..61cda8f6e 100644 --- a/app/controllers/internal/organization_memberships_controller.rb +++ b/app/controllers/internal/organization_memberships_controller.rb @@ -29,7 +29,7 @@ class Internal::OrganizationMembershipsController < Internal::ApplicationControl if organization_membership.destroy flash[:success] = "User was successfully removed from org ##{organization_membership.organization_id}" else - flash[:danger] = "Something wen wrong with removing the user from org ##{organization_membership.organization_id}" + flash[:danger] = "Something went wrong with removing the user from org ##{organization_membership.organization_id}" end redirect_to internal_user_path(organization_membership.user_id) end