From 9e45cf625dba3ead3efdb9736b0d447e00360e0e Mon Sep 17 00:00:00 2001 From: Jorge Manrubia Date: Tue, 1 Jul 2025 18:31:51 +0200 Subject: [PATCH] Remove caching so that it doesn't interfere when working on design --- app/controllers/prompts/commands_controller.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/controllers/prompts/commands_controller.rb b/app/controllers/prompts/commands_controller.rb index aacf082e2..774bdff89 100644 --- a/app/controllers/prompts/commands_controller.rb +++ b/app/controllers/prompts/commands_controller.rb @@ -1,9 +1,9 @@ class Prompts::CommandsController < ApplicationController def index - @commands = [] - - if stale? etag: @commands - render layout: false - end + # @commands = [] + # + # if stale? etag: @commands + render layout: false + # end end end