diff --git a/rails_app/app/views/projects/show.html.erb b/rails_app/app/views/projects/show.html.erb
index 6898cef..8411d0c 100644
--- a/rails_app/app/views/projects/show.html.erb
+++ b/rails_app/app/views/projects/show.html.erb
@@ -1,3 +1,4 @@
+
<%= @project.title %>
Project creator: <%= @project.creator %>
@@ -5,9 +6,6 @@
Project status: <%= @project.status %>
-
-Add a comment:
-
<%= form_with model: [ @project, @project.comments.build ] do |form| %>
@@ -34,12 +32,8 @@
<% @project.comments.each do |comment| %>
- Commenter:
- <%= comment.creator %>
-
-
-
- Comment:
+ <%= comment.creator %>
+
<%= comment.body %>
<% end %>
diff --git a/rails_app/config/environments/development.rb b/rails_app/config/environments/development.rb
index 2e7fb48..e03df92 100644
--- a/rails_app/config/environments/development.rb
+++ b/rails_app/config/environments/development.rb
@@ -1,6 +1,11 @@
require "active_support/core_ext/integer/time"
Rails.application.configure do
+
+ ## For Github Codespaces
+ config.action_controller.forgery_protection_origin_check = false
+
+
# Settings specified here will take precedence over those in config/application.rb.
# In the development environment your application's code is reloaded any time