Remove caching so that it doesn't interfere when working on design

This commit is contained in:
Jorge Manrubia
2025-07-01 18:31:51 +02:00
parent 6440e22030
commit 9e45cf625d
@@ -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