Skip to content

Commit a102211

Browse files
committed
add text content to .vert and .frag files
1 parent 0dc6322 commit a102211

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/scripts/examples.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,9 +291,9 @@ function createProjectsInP5user(projectsInAllCategories) {
291291
};
292292

293293
// a function to await for the response that contains the content of asset file
294-
const doRequest = function (_options) {
294+
const doRequest = function (optionsAsset) {
295295
return new Promise(((resolve, reject) => {
296-
rp(_options).then((response) => {
296+
rp(optionsAsset).then((response) => {
297297
resolve(response);
298298
}).catch((error) => {
299299
reject(error);

0 commit comments

Comments
 (0)