Skip to content

Commit

Permalink
fix(build):remove-unwanted-files
Browse files Browse the repository at this point in the history
  • Loading branch information
AswinAsok committed Dec 1, 2023
1 parent 7eb9cce commit 173789a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Pages/CampusLogoGen/CampusLogoGen.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ import yipLogoDark from "../../images/yip_logo/yip-logo-dark.svg";
const CampusLogoGenerator = () => {
useEffect(() => {
document.title = "Campus Logo Generator";

setLogoColor("#ffffff");
}, []);

const domEl = useRef(null);
Expand All @@ -30,7 +32,7 @@ const CampusLogoGenerator = () => {
const [fileType, setFileType] = useState("PNG");

const MAX_CHARS = 15;
setLogoColor("#ffffff");

const logoTypes = ["MuLearn", "YIP"];
const muLogoVariants = ["Profile Pic", "Transparent Bg"];
const yipLogoVariants = ["Black", "Red", "Dark"];
Expand Down Expand Up @@ -276,7 +278,7 @@ const CampusLogoGenerator = () => {
<>
<label class="block mb-3 text-sm font-medium">Logo Color</label>
<div className="flex justify-between mb-8">
{logoFgVarients.map((varient) =>
{logoFgVarients.map((varient) =>
varient.svg !== logoGradient ? (
<div
key={varient.color}
Expand Down

0 comments on commit 173789a

Please sign in to comment.