Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/components/OneDollarStats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ const oneDollarSnippet = () => {
}
const values = { ...props };
for (const key in params) {
// @ts-expect-error somehow typescript bugs
const value = params[key];
if (value !== null && value !== undefined) {
values[key] = truncate(
Expand Down Expand Up @@ -101,6 +100,7 @@ function Component({ collectorAddress, staticScriptUrl }: Props) {
data-autocollect="false"
data-hash-routing="true"
data-url={collector}
type="module"
src={`/live/invoke/website/loaders/analyticsScript.ts?url=${staticScript}`}
/>
<script defer src={useScriptAsDataURI(oneDollarSnippet)} />
Expand Down
Loading