🎨 style(modals): simplify modal titles

The modal titles were simplified to remove the unnecessary "as" preposition and to make them more concise. The "Export as" and "Import from" titles were changed to "Export" and "Import" respectively.
This commit is contained in:
Gabriel Almeida 2023-05-30 10:44:10 -03:00
commit 7d014f0372
2 changed files with 2 additions and 2 deletions

View file

@ -84,7 +84,7 @@ export default function ExportModal() {
as="h3"
className="text-lg font-medium dark:text-white leading-10 text-gray-900"
>
Export as
Export
</Dialog.Title>
</div>
</div>

View file

@ -124,7 +124,7 @@ export default function ImportModal() {
as="h3"
className="text-lg font-medium dark:text-white leading-10 text-gray-900"
>
{showExamples ? "Select an example" : "Import from"}
{showExamples ? "Select an example" : "Import"}
</Dialog.Title>
</div>
</div>