diff --git a/docs/guide/custom-features.md b/docs/guide/custom-features.md
index 9242209fdd..5eaa8bdf78 100644
--- a/docs/guide/custom-features.md
+++ b/docs/guide/custom-features.md
@@ -6,7 +6,7 @@ title: Custom Features Guide
 
 Want to skip to the implementation? Check out these examples:
 
-- [custom-features](../../framework/react/examples/custom-features)
+- [custom-features](../framework/react/examples/custom-features)
 
 ## Custom Features Guide
 
@@ -108,7 +108,7 @@ The `createCell` method in a table feature is responsible for adding methods to
 
 Let's walk through making a custom table feature for a hypothetical use case. Let's say we want to add a feature to the table instance that allows the user to change the "density" (padding of cells) of the table. 
 
-Check out the full [custom-features](../../framework/react/examples/custom-features) example to see the full implementation, but here's an in-depth look at the steps to create a custom feature.
+Check out the full [custom-features](../framework/react/examples/custom-features) example to see the full implementation, but here's an in-depth look at the steps to create a custom feature.
 
 #### Step 1: Set up TypeScript Types