Confint returning a logical value

I created the following SLR model using:

fit <- lm(WAge ~ HAge, data = couples) # regress wife's age against husband's age
summary(fit)

...and it worked just fine.

However, I want to calculate the confidence intervals using confint(), but instead of the customary:

                         2.5%          97.5%
(intercept) 
HAge

...it keeps on returning a logical value, in this case [TRUE]. Would anyone happen to know why this is happening? Thank you!!!
Greg

Can you post a reprex showing the exact code you are using with your confint() call. When I just used the function on a lm object, it returned the expected result.