The JupyterLab module's run.sh has a typo in the error message when no valid installer is found:
echo "No valid installer is not installed"
This double negative reads oddly. It should be:
echo "No valid installer is installed"
or:
echo "A valid installer is not installed"
https://github.com/coder/registry/blob/main/registry/coder/modules/jupyterlab/run.sh#L17
Created on behalf of @ericpaulsen