Loading…
Loading…
Main had a minimal getUserSummary returning just the name. The PR extends it: age from birthDate and the first role. It works in the happy path — but you know prod isn't the happy path. Walk the diff and find every new crash point.
Strategy: walk each line and ask "what if this value is null / undefined / empty?". Prod is not the happy path. Anything that **can** be empty **will** be empty, sooner or later. Look at the code and note every place where something might come in empty.