-
+
<%= svg_icon 'world', class: 'w-5 h-5' %>
Global
-
+
<%= svg_icon 'eu_flag', class: 'w-5 h-5' %>
Europe
diff --git a/app/views/shared/_navbar.html.erb b/app/views/shared/_navbar.html.erb
index 0bb4c41d..98acc80e 100644
--- a/app/views/shared/_navbar.html.erb
+++ b/app/views/shared/_navbar.html.erb
@@ -10,7 +10,7 @@
<% if signed_in? %>
<% if Docuseal.demo? %>
-
+
<%= t('sign_up') %>
diff --git a/lib/action_mailer_configs_interceptor.rb b/lib/action_mailer_configs_interceptor.rb
index 7cbf5605..f823fc3d 100644
--- a/lib/action_mailer_configs_interceptor.rb
+++ b/lib/action_mailer_configs_interceptor.rb
@@ -24,12 +24,6 @@ module ActionMailerConfigsInterceptor
message.from = from
end
- if from == 'DocuSeal '
- message.body.instance_variable_set(
- :@raw_source, message.body.raw_source.gsub('https://docuseal.co/', 'https://docuseal.com/')
- )
- end
-
return message
end
diff --git a/lib/docuseal.rb b/lib/docuseal.rb
index 19e196b5..48ef452d 100644
--- a/lib/docuseal.rb
+++ b/lib/docuseal.rb
@@ -20,12 +20,12 @@ module Docuseal
elsif ENV['MULTITENANT'] == 'true'
"https://console.#{HOST}"
else
- 'https://console.docuseal.co'
+ 'https://console.docuseal.com'
end
CLOUD_URL = if Rails.env.development?
'http://localhost:3000'
else
- 'https://docuseal.co'
+ 'https://docuseal.com'
end
CDN_URL = if Rails.env.development?
'http://localhost:3000'
diff --git a/lib/submissions/generate_audit_trail.rb b/lib/submissions/generate_audit_trail.rb
index df72ce23..2f02d5e4 100644
--- a/lib/submissions/generate_audit_trail.rb
+++ b/lib/submissions/generate_audit_trail.rb
@@ -393,7 +393,7 @@ module Submissions
end
def sign_reason
- 'Signed with DocuSeal.co'
+ 'Signed with DocuSeal.com'
end
def maybe_add_background(_canvas, _submission, _page_size); end