If your response is really two levels (not satisfied, satisfied), then use a nominal modeling type and treat it as a categorical response. This will change your linear regression to logistic regression.
If your response is really continuous (satisfaction from 0 to 1), then linear regression will have difficulty. Regression assumes that the response is unbounded and has a range of negative infinity to positive infinity. You can use a transformation of the response that is built into the Fit Model launch dialog that should remedy the disparity. The Logit transform is Log( satisfaction / (1-satisfaction) ). (Note that function is the natural logarithm).
Simply select the response in the Y role and then click the red triangle near the bottom center for Transforms and select Logit. It works like this:
This example has a response Y that is continuous but bounded between 0 and 1 like your response. The predictor X is normally distributed. Now set up the Fit Model launch I as instructed:
I am using a linear model of second order but that fact is not important. This approach works with any linear predictor such as your model. Click Run:
(Note that I first changed the Emphasis setting to Minimal Report.)
You can see that this transformation helps the regression deal with the lower and upper bounds of satisfaction.