User specific content showing on all user accounts in Volto

Good morning, Plone community!

I am trying to filter content in Volto so that only the current user can see his or her created content, and not anyone else's per content type. Is there a way to do this in Volto because as of now the content created in one user profile is displaying across all the users in Volto?

I thank you kindly.

Sincerely,

rbrown12

Here is some of the code used in the search query in Volto/React:

const content = useSelector((store) => store.content.data);
  const results = useSelector(
    (state) => state.search.subrequests.content?.items,
  );
  const dispatch = useDispatch();
  useEffect(() => {
    dispatch(
      searchContent(
        '/',
        {
          b_size: 25,
          creator: 'admin',
          portal_type: 'Financial Aid Docs',
          meta_type: 'Dexterity Item',
          fullobjects: true,
        },
        'content',
      ),
    );
  }, [dispatch]);