diff --git a/App.tsx b/App.tsx index fae975c..9fe96ec 100644 --- a/App.tsx +++ b/App.tsx @@ -249,13 +249,13 @@ const App: React.FC = () => {
- {/* LOGO LOGIC: Use imported logoImg */} + {/* LOGO LOGIC: Use imported logoImg. UPDATED: h-12 for 20% larger size (approx) */} {!logoError ? ( Logo setLogoError(true)} - className="h-10 object-contain" + className="h-12 object-contain" /> ) : (
@@ -298,7 +298,7 @@ const App: React.FC = () => { {data.step === Step.PLATFORM && } {data.step === Step.TONE_GOAL && } {data.step === Step.DETAILS && } - {data.step === Step.RESULT && generatedContent && } + {data.step === Step.RESULT && generatedContent && } {errorMessage && (
diff --git a/_EDITABLE_CONFIG/ui_text.ts b/_EDITABLE_CONFIG/ui_text.ts index 2eb0bf6..3c6d059 100644 --- a/_EDITABLE_CONFIG/ui_text.ts +++ b/_EDITABLE_CONFIG/ui_text.ts @@ -109,7 +109,7 @@ export const UI_TEXT = { files: "Materiały pomocnicze (Max 3)", filesDrop: "Kliknij, aby dodać pliki", filesSub: "GPX, PDF, JPG, PNG", - gpxPreviewBtn: "👁️ Podgląd danych dla AI" + gpxPreviewBtn: "Podgląd danych dla AI" }, generateBtn: { loading: "Generowanie Historii...", diff --git a/components/StepResult.tsx b/components/StepResult.tsx index 4cc1ba0..6598a09 100644 --- a/components/StepResult.tsx +++ b/components/StepResult.tsx @@ -10,9 +10,10 @@ interface ExtendedStepResultProps { onRegenerate: (slideCount: number, feedback: string) => void; isRegenerating: boolean; tripData?: WizardState['tripData']; + eventType?: WizardState['eventType']; } -const StepResult: React.FC = ({ content, onRegenerate, isRegenerating, tripData }) => { +const StepResult: React.FC = ({ content, onRegenerate, isRegenerating, tripData, eventType }) => { const [copiedSection, setCopiedSection] = useState(null); const [copiedSlideIndex, setCopiedSlideIndex] = useState(null); const [isEditing, setIsEditing] = useState(false); @@ -119,7 +120,8 @@ const StepResult: React.FC = ({ content, onRegenerate,
)} - {tripData && tripData.startPoint && ( + {/* MAPA WYŚWIETLA SIĘ TYLKO DLA WYCIECZEK */} + {eventType === 'trip' && tripData && tripData.startPoint && ( )}