clear lot of tickets
This commit is contained in:
@@ -9,6 +9,7 @@ import { Routes } from "../../navigation";
|
||||
import { navigate } from "../../navigation/NavigationService";
|
||||
import { useUser } from "../../providers/UserDataProvider";
|
||||
import { gutters } from "../../styles";
|
||||
import { isWeb } from "../../hooks/useLayoutType";
|
||||
|
||||
const Studio = () => {
|
||||
const [selectedProjectId, setSelectedProjectId] = useState(null);
|
||||
@@ -23,7 +24,7 @@ const Studio = () => {
|
||||
return (
|
||||
<Page
|
||||
headerType="NONE"
|
||||
backgroundImg={background.studioBG}
|
||||
backgroundImg={isWeb ? background.productionBG2 : background.studioBG}
|
||||
containerStyle={{ paddingHorizontal: 0 }}
|
||||
contentContainerStyle={{
|
||||
padding: gutters * 2,
|
||||
@@ -117,7 +118,7 @@ const Studio = () => {
|
||||
if (selectedProject?.musicStatus === "GENERATING") {
|
||||
alert(
|
||||
"Attention",
|
||||
"La chanson est en cours de génération. Veuillez patienter."
|
||||
"La chanson est en cours de génération. Veuillez patienter.",
|
||||
);
|
||||
} else {
|
||||
if (!selectedProject?.id) return;
|
||||
|
||||
Reference in New Issue
Block a user