From 3945d0132d8b3caa32940a2749ab4809bc13d310 Mon Sep 17 00:00:00 2001 From: Henric Trotzig Date: Fri, 12 Jan 2018 10:59:44 -0800 Subject: [PATCH] Properly use `withPrefix` in adding-images-fonts-files docs (#3503) I came across this while browsing through the documentation. The `withPrefix` import was left unused in the "escape hatch" example, which I'm pretty sure is not intentional. --- docs/docs/adding-images-fonts-files.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/adding-images-fonts-files.md b/docs/docs/adding-images-fonts-files.md index 52262619588e4..ba4acf51d34c8 100644 --- a/docs/docs/adding-images-fonts-files.md +++ b/docs/docs/adding-images-fonts-files.md @@ -86,7 +86,7 @@ render() { // Note: this is an escape hatch and should be used sparingly! // Normally we recommend using `import` for getting asset URLs // as described in “Adding Images and Fonts” above this section. - return Logo; + return Logo; } ```