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;
|
footerText: string;
|
||||||
facebookUrl: string;
|
facebookUrl: string;
|
||||||
instagramUrl: string;
|
instagramUrl: string;
|
||||||
|
twitterUrl: string;
|
||||||
|
pinterestUrl: string;
|
||||||
aiProvider: string;
|
aiProvider: string;
|
||||||
aiBaseUrl: string;
|
aiBaseUrl: string;
|
||||||
aiModel: string;
|
aiModel: string;
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ export default function ReceiptModal({
|
|||||||
{/* Timestamp */}
|
{/* Timestamp */}
|
||||||
<div className="flex justify-between items-center mb-2 text-xs text-gray-500">
|
<div className="flex justify-between items-center mb-2 text-xs text-gray-500">
|
||||||
<span>Ticket #{receipt.receiptNumber}</span>
|
<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>
|
</div>
|
||||||
{/* Logo */}
|
{/* Logo */}
|
||||||
<div className="mb-3 flex justify-center">
|
<div className="mb-3 flex justify-center">
|
||||||
|
|||||||
Reference in New Issue
Block a user