Files
sure/app/views/imports/_failure.html.erb
Zach Gollwitzer ab6fdbbb68 Component namespacing (#2463)
* [claudesquad] update from 'component-namespacing' on 18 Jul 25 07:23 EDT

* [claudesquad] update from 'component-namespacing' on 18 Jul 25 07:30 EDT

* Update stimulus controller references to use namespace

* Fix remaining tests
2025-07-18 08:30:00 -04:00

17 lines
707 B
Plaintext

<%# locals: (import:) %>
<div class="h-full flex flex-col justify-center items-center">
<div class="space-y-6 max-w-sm">
<div class="mx-auto bg-red-500/5 h-8 w-8 rounded-full flex items-center justify-center">
<%= icon "alert-octagon", color: "destructive" %>
</div>
<div class="text-center space-y-2">
<h1 class="font-medium text-primary text-center text-3xl">Import failed</h1>
<p class="text-sm text-secondary">Please check that your file format, for any errors and that all required fields are filled, then come back and try again.</p>
</div>
<%= render DS::Button.new(text: "Try again", href: publish_import_path(import), full_width: true) %>
</div>
</div>