Text fixes

This commit is contained in:
estradino 2024-09-11 17:04:59 -04:00
parent d8b9872504
commit a0daa3ae36
5 changed files with 7 additions and 7 deletions

View file

@ -92,7 +92,7 @@ function SpotPlayerHeader({
} else if (key === '2') {
spotStore.deleteSpot([spotStore.currentSpot!.spotId]).then(() => {
history.push(spotsList());
message.success('Spot deleted successfully');
message.success('Spot successfully deleted');
});
}
};

View file

@ -188,7 +188,7 @@ function SpotVideoContainer({
{isProcessing ? (
<Alert
className='trimIsProcessing rounded-lg shadow-sm border-indigo-500 bg-indigo-50'
message="Youre viewing the entire recording. Trimmed Spot will be available here shortly."
message="Youre viewing the entire recording. The trimmed Spot will be available here shortly."
showIcon
type="info"
icon={<InfoCircleOutlined style={{ color: '#394dfe' }} />}
@ -196,7 +196,7 @@ function SpotVideoContainer({
) : prevIsProcessing ? (
<Alert
className='trimIsReady rounded-lg shadow-sm border-0'
message="Your trimmed Spot is ready!"
message="Your trimmed Spot is available!"
showIcon
type="success"
action={

View file

@ -72,7 +72,7 @@ export const categories: Category[] = [
title: '',
key: 'spot',
items: [
{ label: 'Spot', key: MENU.SPOTS, icon: 'orspotOutline' },
{ label: 'Spots', key: MENU.SPOTS, icon: 'orspotOutline' },
]
},
{

View file

@ -844,7 +844,7 @@ export default defineBackground(() => {
if (!resp || !resp.id) {
return sendToActiveTab({
type: messages.content.to.notification,
message: "Couldn't save Spot",
message: "Couldn't create Spot",
});
}
const { id, mobURL, videoURL } = resp;

View file

@ -445,7 +445,7 @@ function SavingControls({
<div class="flex flex-col ">
<div>
<div class="flex justify-between items-center">
<h4 class="text-lg font-medium mb-4">Save Spot</h4>
<h4 class="text-lg font-medium mb-4">New Spot</h4>
<form method="dialog">
<button class="btn btn-sm btn-circle btn-ghost absolute right-3 top-3.5">
@ -490,7 +490,7 @@ function SavingControls({
: "btn-disabled btn btn-sm text-white text-base"
}
>
Save Spot
Create
</div>
<div