SO this is the situation previously it looked like this in my phpSTORM
show usage NAME +1
export interface CandidateProfileInfoProps {
readonly model: CandidateSituationProfileModel
readonly arrangement: CandidateSituationProfileArrangementEnum
}
show usage NAME +1
export default function CandidateSituationProfile(props: CandidateProfileInfoProps) {
function getMainContainerCssClassName(): string {
if (props.arrangement === CandidateSituationProfileArrangementEnum.ThreeColumns) {
return `${styles.mainContainer} ${styles.threeColumns}`
}
return `${styles.mainContainer} ${styles.twoColumns}`
}
now it’s gone.
I asked my seniors / devOps / head of programs. they all haven’t seen this ever. asked google and chatty but I lost braincells looking for it. anyone knows how to get this thing working again?