Skip to content

Commit 5277f3f

Browse files
committed
use dashes instead of dots
1 parent d4baf90 commit 5277f3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/gatsby/onPostBuild.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ const parsePathSlug = (slug: string) => {
7474
);
7575

7676
const { platform, sub_platform, step } = pathMatch.groups;
77-
let sub = `performance-onboarding.${sub_platform}.${step}`;
77+
let sub = `performance-onboarding-${sub_platform}-${step}`;
7878

7979
if (platform === pathMatch.groups.sub_platform) {
80-
sub = `performance-onboarding.${step}`;
80+
sub = `performance-onboarding-${step}`;
8181
}
8282

8383
return {

0 commit comments

Comments
 (0)