Text fixes
This commit is contained in:
parent
d8b9872504
commit
a0daa3ae36
5 changed files with 7 additions and 7 deletions
|
|
@ -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');
|
||||
});
|
||||
}
|
||||
};
|
||||
|
|
|
|||
|
|
@ -188,7 +188,7 @@ function SpotVideoContainer({
|
|||
{isProcessing ? (
|
||||
<Alert
|
||||
className='trimIsProcessing rounded-lg shadow-sm border-indigo-500 bg-indigo-50'
|
||||
message="You’re viewing the entire recording. Trimmed Spot will be available here shortly."
|
||||
message="You’re 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={
|
||||
|
|
|
|||
|
|
@ -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' },
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue