Most developers work on gluing CRUD functionality into some kind of GUI.
https://en.wikipedia.org/wiki/Create,_read,_update_and_deleteIf you do frontend development (GUI on websites) there's very little math. What math there is, is usually CSS/styling related.
For the backend part, it depends a lot on what you are working with. It usually requires some intuition about datastructures / computational complexity - but that is also learned as you gain more experience programming.
Depending on what/where you are studying, the math concepts that you will meet are related to:
Linear Algebra (Vector/Matrix math)
Calculus (used for many things like: probability/statistics (e.g. data science), optimization problems (e.g. machine learning) and more)
Discrete math (combinatorics, discrete probability, set theory, graph theory, logic and more)
Complexity theory (analysis of algorithms, determining the runtime depending on the size of the input, or even the space used by the algorithm itself)
I wouldn't say the math is bad, but if you have a tendency to tell yourself you are bad at it, you probably want to work more at it when studying. Lots of people who think they are bad at math get through these with some amount of effort. You don't have to be a god at math to work your way through the topics.