Skip to content

Commit

Permalink
Fix/bugs (#255)
Browse files Browse the repository at this point in the history
* name changed to scribe , welcome back case changed , space removed

* label foxed for volume in audio mode

* fix for dynamic msg not shows project name in audio mode
  • Loading branch information
sijumoncy authored Nov 24, 2023
1 parent b06844d commit fc461ce
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion renderer/src/components/AudioRecorder/components/Player.js
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ const Player = ({

<div className="flex flex-col items-center">
<div className="text-xxs mb-2 text-gray-300 uppercase tracking-wider">
{t('label-delete')}
{t('label-volume')}
</div>
<div className="flex gap-2 mt-2 items-center justify-center">
<button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ const AudioEditor = ({ editor }) => {
);
setIsLoading(false);
setOpenSnackBar(true);
setSnackText(t('dynamic-msg-load-ref-bible-snack', { projectName }));
setSnackText(t('dynamic-msg-load-ref-bible-snack', { refName: projectName }));
setNotify('success');
setDisplayScreen(false);
} else {
Expand Down
8 changes: 4 additions & 4 deletions renderer/src/components/Login/LeftLogin.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,18 +183,18 @@ const LeftLogin = () => {
return (
<div className="flex flex-col w-full h-full pt-32 items-center relative xl:pt-28">

<div className=" mt-10 flex flex-col gap-3 items-center justify-center pb-20">
<div className="mt-10 flex flex-col gap-3 items-center justify-center pb-20 ">
<LogoIcon
className="h-16 w-16 group-hover:text-primary"
className="h-16 w-16 group-hover:text-primary ml-5"
aria-hidden="true"
/>
<div className="text-white flex flex-col justify-center ">
<h3 className="uppercase font-bold tracking-wider text-3xl text-black">Scribe Scripture</h3>
<h3 className="uppercase font-bold tracking-wider text-4xl text-black text-center">Scribe</h3>
<q className="text-center italic text-sm mt-2 text-black">Scripture editing made simple</q>
</div>
</div>

<p className="text-md text-black/80">{sortedUsers.length === 0 ? 'Welcome!' : 'Welcome Back !'}</p>
<p className="text-md text-black/80">{sortedUsers.length === 0 ? 'Welcome!' : 'Welcome back!'}</p>

<div className="p-7 pb-0">

Expand Down

0 comments on commit fc461ce

Please sign in to comment.