I have the following MWE where I'm adjusting how my sections are rendered using the titlesec package. Based on this question, I came up with the following:
\documentclass{article}
\usepackage{titlesec}
\usepackage{titletoc}
\titlelabel{Article \thetitle: }
\titlecontents
{section}
[0pt] % mandatory, sets left margin from left page margin
{} % above code
{Article \thecontentslabel} % numbered entry
{} % numberless entry
{\thecontentspage} % add dots here if desired, filler page format
\begin{document}
\tableofcontents
\clearpage
\section{Intro}
\section{General}
\end{document}
The section labels look like I expect:
However, the section labels in the table of contents look different:
I'm not sure why this happens. What am I doing wrong?


