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') { } else if (key === '2') {
spotStore.deleteSpot([spotStore.currentSpot!.spotId]).then(() => { spotStore.deleteSpot([spotStore.currentSpot!.spotId]).then(() => {
history.push(spotsList()); history.push(spotsList());
message.success('Spot deleted successfully'); message.success('Spot successfully deleted');
}); });
} }
}; };

View file

@ -188,7 +188,7 @@ function SpotVideoContainer({
{isProcessing ? ( {isProcessing ? (
<Alert <Alert
className='trimIsProcessing rounded-lg shadow-sm border-indigo-500 bg-indigo-50' 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 showIcon
type="info" type="info"
icon={<InfoCircleOutlined style={{ color: '#394dfe' }} />} icon={<InfoCircleOutlined style={{ color: '#394dfe' }} />}
@ -196,7 +196,7 @@ function SpotVideoContainer({
) : prevIsProcessing ? ( ) : prevIsProcessing ? (
<Alert <Alert
className='trimIsReady rounded-lg shadow-sm border-0' className='trimIsReady rounded-lg shadow-sm border-0'
message="Your trimmed Spot is ready!" message="Your trimmed Spot is available!"
showIcon showIcon
type="success" type="success"
action={ action={

View file

@ -72,7 +72,7 @@ export const categories: Category[] = [
title: '', title: '',
key: 'spot', key: 'spot',
items: [ 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) { if (!resp || !resp.id) {
return sendToActiveTab({ return sendToActiveTab({
type: messages.content.to.notification, type: messages.content.to.notification,
message: "Couldn't save Spot", message: "Couldn't create Spot",
}); });
} }
const { id, mobURL, videoURL } = resp; const { id, mobURL, videoURL } = resp;

View file

@ -445,7 +445,7 @@ function SavingControls({
<div class="flex flex-col "> <div class="flex flex-col ">
<div> <div>
<div class="flex justify-between items-center"> <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"> <form method="dialog">
<button class="btn btn-sm btn-circle btn-ghost absolute right-3 top-3.5"> <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" : "btn-disabled btn btn-sm text-white text-base"
} }
> >
Save Spot Create
</div> </div>
<div <div