fix(admin): add twitterUrl/pinterestUrl to StoreSettings interface for settings page type safety
This commit is contained in:
@@ -371,6 +371,8 @@ export interface StoreSettings {
|
||||
footerText: string;
|
||||
facebookUrl: string;
|
||||
instagramUrl: string;
|
||||
twitterUrl: string;
|
||||
pinterestUrl: string;
|
||||
aiProvider: string;
|
||||
aiBaseUrl: string;
|
||||
aiModel: string;
|
||||
|
||||
@@ -67,7 +67,7 @@ export default function ReceiptModal({
|
||||
{/* Timestamp */}
|
||||
<div className="flex justify-between items-center mb-2 text-xs text-gray-500">
|
||||
<span>Ticket #{receipt.receiptNumber}</span>
|
||||
<span>{new Date(receipt.createdAt).toLocaleString('es-ES', { dateStyle: 'short', timeStyle: 'short' })}</span>
|
||||
<span>{new Date(receipt.issuedAt).toLocaleString('es-ES', { dateStyle: 'short', timeStyle: 'short' })}</span>
|
||||
</div>
|
||||
{/* Logo */}
|
||||
<div className="mb-3 flex justify-center">
|
||||
|
||||
Reference in New Issue
Block a user