fix: receipt location

This commit is contained in:
nate 2026-03-19 13:59:02 +04:00
parent 9881d4f681
commit dad663b5e3
1 changed files with 1 additions and 1 deletions

View File

@ -175,8 +175,8 @@
<% if (inv.status === 'pending' || inv.status === 'underpaid' || inv.status === 'confirming') { %> <% if (inv.status === 'pending' || inv.status === 'underpaid' || inv.status === 'confirming') { %>
<a href="/dashboard/checkout/<%= inv.id %>" class="text-xs text-blue-400 hover:text-blue-300">View</a> <a href="/dashboard/checkout/<%= inv.id %>" class="text-xs text-blue-400 hover:text-blue-300">View</a>
<% } else if (inv.status === 'paid') { %> <% } else if (inv.status === 'paid') { %>
<a href="/dashboard/checkout/<%= inv.id %>/receipt" target="_blank" class="text-xs text-gray-500 hover:text-gray-400 transition-colors">Receipt</a>
<span class="text-xs text-green-500/70">Paid</span> <span class="text-xs text-green-500/70">Paid</span>
<a href="/dashboard/checkout/<%= inv.id %>/receipt" target="_blank" class="text-xs text-blue-400 hover:text-blue-300 transition-colors">Receipt</a>
<% } %> <% } %>
</div> </div>
</div> </div>