I am having trouble formatting the ToC for a book. I have long chapter titles which wrap onto two lines of ToC text. The problem is that the second line of a single chapter title is aligned with the chapter number, but I need it to align with the beginning of the title text on the first line:
I am using the titletoc package.
\documentclass[twoside,openany,10pt]{book}
\usepackage[paperwidth=5in, paperheight=8in, bindingoffset=0.375in, top=0.7in, bottom=0.7in, left=0.5in, right=0.5in]{geometry}
\renewcommand{\baselinestretch}{1.3}
\usepackage{titlesec}
\usepackage {setspace}
\usepackage{librebaskerville}
\usepackage[T1]{fontenc}
\usepackage{anyfontsize}
\usepackage{letterspace}
\usepackage{fancyhdr}
\usepackage{titletoc}%
\usepackage{graphicx}
\usepackage{float}
\usepackage[overload]{textcase}
\usepackage{microtype}
\usepackage[symbol]{footmisc}
\usepackage{enumerate}
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
\titlecontents{chapter}% <section-type>
[0pt]% <left>
{\small}% <above-code>
{\thecontentslabel . \quad}% <numbered-entry-format>
{}% <numberless-entry-format>
{\hfill\contentspage}% <filler-page-format>
%Begin Document
\begin{document}
\tableofcontents
\chapter{Order Of Visualization}
\chapter{How To Attract To Yourself The Things You Desire}
\end{document}

